add duperemove: btrfs deduplication tool

This commit is contained in:
Mathijs Kwik 2014-11-05 23:58:14 +01:00
parent a94baadb48
commit d0e0d62e61
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, stdenv, fetchurl, libgcrypt, pkgconfig, glib, linuxHeaders }:
stdenv.mkDerivation rec {
name = "duperemove-${version}";
version = "0.09.beta2";
src = fetchurl {
url = "https://github.com/markfasheh/duperemove/archive/v${version}.tar.gz";
sha256 = "0rn7lf9rjf4ypgfwms2y7b459rri4rfn809h6wx8xl9nbm5niil4";
};
buildInputs = [ libgcrypt pkgconfig glib linuxHeaders ];
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
meta = {
description = "A simple tool for finding duplicated extents and submitting them for deduplication";
homepage = https://github.com/markfasheh/duperemove;
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.bluescreen303 ];
platforms = lib.platforms.all;
};
}

View File

@ -682,6 +682,10 @@ let
dlx = callPackage ../misc/emulators/dlx { };
duperemove = callPackage ../tools/filesystems/duperemove {
linuxHeaders = linuxHeaders_3_14;
};
eggdrop = callPackage ../tools/networking/eggdrop { };
enca = callPackage ../tools/text/enca { };