Merge pull request #62199 from dtzWill/update/dedup-2.0

dedup: 1.0 -> 2.0
This commit is contained in:
Maximilian Bosch 2019-05-30 10:35:52 +02:00 committed by GitHub
commit 65a73e0f94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 11 deletions

View File

@ -1,27 +1,32 @@
{ stdenv, fetchurl, lz4, snappy, openmp }:
{ stdenv, fetchurl, fetchgit, lz4, snappy, libsodium
# For testing
, coreutils, gawk
}:
stdenv.mkDerivation rec {
pname = "dedup";
version = "1.0";
version = "2.0";
src = fetchurl {
url = "https://dl.2f30.org/releases/${pname}-${version}.tar.gz";
sha256 = "0wd4cnzhqk8l7byp1y16slma6r3i1qglwicwmxirhwdy1m7j5ijy";
sha256 = "0n5kkni4d6blz3s94y0ddyhijb74lxv7msr2mvdmj8l19k0lrfh1";
};
makeFlags = [
"CC:=$(CC)"
"PREFIX=${placeholder "out"}"
"MANPREFIX=${placeholder "out"}/share/man"
# These are likely wrong on some platforms, please report!
"OPENMPCFLAGS=-fopenmp"
"OPENMPLDLIBS=-lgomp"
];
buildInputs = [ lz4 snappy openmp ];
buildInputs = [ lz4 snappy libsodium ];
doCheck = true;
checkInputs = [ coreutils gawk ];
checkTarget = "test";
meta = with stdenv.lib; {
description = "data deduplication program";
description = "Data deduplication program";
homepage = https://git.2f30.org/dedup/file/README.html;
license = with licenses; [ bsd0 isc ];
maintainers = with maintainers; [ dtzWill ];

View File

@ -1362,9 +1362,7 @@ in
ddate = callPackage ../tools/misc/ddate { };
dedup = callPackage ../tools/backup/dedup {
inherit (llvmPackages) openmp;
};
dedup = callPackage ../tools/backup/dedup { };
dehydrated = callPackage ../tools/admin/dehydrated { };