summary refs log tree commit diff
path: root/pkgs/tools/backup/chunksync/default.nix
blob: e1d19a48971ca3bde9ad73cf0182d6f5b4e95194 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl, openssl, perl }:

stdenv.mkDerivation rec {
  version = "0.3";
  name = "chunksync-${version}";

  src = fetchurl {
    url = "http://chunksync.florz.de/chunksync_${version}.tar.gz";
    sha256 = "e0c27f925c5cf811798466312a56772864b633728c433fb2fcce23c8712b52fc";
  };

  buildInputs = [openssl perl];

  NIX_LDFLAGS = "-lgcc_s";

  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";
    homepage = http://chunksync.florz.de/;
    license = stdenv.lib.licenses.gpl2;
    platforms = with stdenv.lib.platforms; linux;
  };
}