nixpkgs/pkgs/by-name/ch/chunksync/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
758 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{
lib,
stdenv,
fetchurl,
openssl,
perl,
}:
2013-12-30 13:21:52 +00:00
stdenv.mkDerivation rec {
version = "0.4";
pname = "chunksync";
2013-12-30 13:21:52 +00:00
src = fetchurl {
url = "https://chunksync.florz.de/chunksync_${version}.tar.gz";
sha256 = "1gwqp1kjwhcmwhynilakhzpzgc0c6kk8c9vkpi30gwwrwpz3cf00";
2013-12-30 13:21:52 +00:00
};
buildInputs = [
openssl
perl
];
NIX_LDFLAGS = "-lgcc_s";
2013-12-30 13:21:52 +00:00
makeFlags = [
"DESTDIR=$(out)"
"PREFIX="
];
preInstall = ''
mkdir -p $out/bin
mkdir -p $out/share/man/man1
'';
meta = {
description = "Space-efficient incremental backups of large files or block devices";
mainProgram = "chunksync";
homepage = "http://chunksync.florz.de/";
2024-04-26 11:35:31 +00:00
license = lib.licenses.gpl2Plus;
2021-01-15 09:19:50 +00:00
platforms = with lib.platforms; linux;
2013-12-30 13:21:52 +00:00
};
}