2016-05-09 19:28:24 +02:00
|
|
|
{ stdenv, fetchFromGitHub, libgcrypt
|
|
|
|
, pkgconfig, glib, linuxHeaders ? stdenv.cc.libc.linuxHeaders, sqlite }:
|
2014-11-05 23:58:14 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "duperemove";
|
2020-11-11 04:59:28 +01:00
|
|
|
version = "0.11.2";
|
2014-11-05 23:58:14 +01:00
|
|
|
|
2015-07-02 12:26:44 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "markfasheh";
|
|
|
|
repo = "duperemove";
|
|
|
|
rev = "v${version}";
|
2020-11-11 04:59:28 +01:00
|
|
|
sha256 = "1a87mka2sfzhbch2jip6wlvvs0glxq9lqwmyrp359d1rmwwmqiw9";
|
2014-11-05 23:58:14 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libgcrypt glib linuxHeaders sqlite ];
|
2014-11-05 23:58:14 +01:00
|
|
|
|
2018-12-22 22:33:33 +01:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2014-11-05 23:58:14 +01:00
|
|
|
|
2016-05-09 19:28:24 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-11-05 23:58:14 +01:00
|
|
|
description = "A simple tool for finding duplicated extents and submitting them for deduplication";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/markfasheh/duperemove";
|
2016-05-09 19:28:24 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ bluescreen303 thoughtpolice ];
|
|
|
|
platforms = platforms.linux;
|
2014-11-05 23:58:14 +01:00
|
|
|
};
|
|
|
|
}
|