nixpkgs/pkgs/tools/filesystems/duperemove/default.nix

28 lines
834 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libgcrypt
, pkg-config, glib, linuxHeaders ? stdenv.cc.libc.linuxHeaders, sqlite }:
stdenv.mkDerivation rec {
pname = "duperemove";
2020-11-11 03:59:28 +00:00
version = "0.11.2";
src = fetchFromGitHub {
owner = "markfasheh";
repo = "duperemove";
rev = "v${version}";
2020-11-11 03:59:28 +00:00
sha256 = "1a87mka2sfzhbch2jip6wlvvs0glxq9lqwmyrp359d1rmwwmqiw9";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libgcrypt glib linuxHeaders sqlite ];
2018-12-22 21:33:33 +00:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
description = "A simple tool for finding duplicated extents and submitting them for deduplication";
homepage = "https://github.com/markfasheh/duperemove";
license = licenses.gpl2;
maintainers = with maintainers; [ bluescreen303 thoughtpolice ];
platforms = platforms.linux;
};
}