nixpkgs: duperemove 0.09.4 -> 0.10

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2015-12-19 22:42:16 -06:00
parent ceb186b281
commit 10a7021c83

View file

@ -1,17 +1,18 @@
{ lib, stdenv, fetchFromGitHub, libgcrypt, pkgconfig, glib, linuxHeaders }:
{ lib, stdenv, fetchFromGitHub, libgcrypt
, pkgconfig, glib, linuxHeaders, sqlite }:
stdenv.mkDerivation rec {
name = "duperemove-${version}";
version = "0.09.4";
version = "0.10";
src = fetchFromGitHub {
owner = "markfasheh";
repo = "duperemove";
rev = "v${version}";
sha256 = "1d586k6rbfqb5557i1p5xq8ngbppbwpxlkw8wqm7d900a3hp36nl";
sha256 = "1fll0xjg1p3pabgjiddild4ragk9spbdmdzrkq0hv5pxb1qrv7lp";
};
buildInputs = [ libgcrypt pkgconfig glib linuxHeaders ];
buildInputs = [ libgcrypt pkgconfig glib linuxHeaders sqlite ];
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
@ -19,8 +20,7 @@ stdenv.mkDerivation rec {
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 ];
maintainers = with lib.maintainers; [ bluescreen303 thoughtpolice ];
platforms = lib.platforms.all;
};
}