5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
33 lines
958 B
Nix
33 lines
958 B
Nix
{ lib, stdenv, fetchFromGitHub, libgcrypt
|
|
, pkg-config, glib, linuxHeaders ? stdenv.cc.libc.linuxHeaders, sqlite
|
|
, util-linux }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "duperemove";
|
|
version = "0.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "markfasheh";
|
|
repo = "duperemove";
|
|
rev = "v${version}";
|
|
hash = "sha256-D3+p8XgokKIHEwZnvOkn7cionVH1gsypcURF+PBpugY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace util.c --replace \
|
|
"lscpu" "${lib.getBin util-linux}/bin/lscpu"
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libgcrypt glib linuxHeaders sqlite ];
|
|
|
|
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;
|
|
};
|
|
}
|