mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
28 lines
833 B
Nix
28 lines
833 B
Nix
{ lib, stdenv, fetchFromGitHub, libgcrypt
|
|
, pkg-config, glib, linuxHeaders ? stdenv.cc.libc.linuxHeaders, sqlite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "duperemove";
|
|
version = "0.11.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "markfasheh";
|
|
repo = "duperemove";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-WjUM52IqMDvBzeGHo7p4JcvMO5iPWPVOr8GJ3RSsnUs=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|