Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
66 lines
1.3 KiB
Nix
66 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libbsd,
|
|
libgcrypt,
|
|
xxHash,
|
|
pkg-config,
|
|
glib,
|
|
linuxHeaders ? stdenv.cc.libc.linuxHeaders,
|
|
sqlite,
|
|
util-linux,
|
|
testers,
|
|
duperemove,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "duperemove";
|
|
version = "0.15.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "markfasheh";
|
|
repo = "duperemove";
|
|
rev = "v${version}";
|
|
hash = "sha256-Y3HIqq61bLfZi4XR2RtSyuCPmcWrTxeWvqpTh+3hUjc=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace util.c --replace \
|
|
"lscpu" "${lib.getBin util-linux}/bin/lscpu"
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
libbsd
|
|
libgcrypt
|
|
glib
|
|
linuxHeaders
|
|
sqlite
|
|
util-linux
|
|
xxHash
|
|
];
|
|
|
|
makeFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
"VERSION=v${version}"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = duperemove;
|
|
command = "duperemove --version";
|
|
version = "v${version}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Simple tool for finding duplicated extents and submitting them for deduplication";
|
|
homepage = "https://github.com/markfasheh/duperemove";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [
|
|
thoughtpolice
|
|
];
|
|
platforms = platforms.linux;
|
|
mainProgram = "duperemove";
|
|
};
|
|
}
|