Skip to content

Commit

Permalink
add duperemove: btrfs deduplication tool
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescreen303 committed Nov 5, 2014
1 parent a94baad commit d0e0d62
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/tools/filesystems/duperemove/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit d0e0d62

Please sign in to comment.