summary refs log tree commit diff
path: root/pkgs/tools/backup/bdsync/default.nix
blob: 53704ce39d42d35cc7eb894e18478c81697b45de (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
33
34
35
36
37
38
39
40
{ stdenv, fetchFromGitHub
, openssl
, pandoc
, which
}:

stdenv.mkDerivation rec {
  pname = "bdsync";
  version = "0.11.1";

  src = fetchFromGitHub {
    owner = "TargetHolding";
    repo = pname;
    rev = "v${version}";
    sha256 = "11grdyc6fgw93jvj965awsycqw5qbzsdys7n8farqnmya8qv8gac";
  };

  nativeBuildInputs = [ pandoc which ];
  buildInputs = [ openssl ];

  postPatch = ''
    patchShebangs ./tests.sh
    patchShebangs ./tests/
  '';

  doCheck = true;

  installPhase = ''
    install -Dm755 bdsync -t $out/bin/
    install -Dm644 bdsync.1 -t $out/share/man/man1/
  '';

  meta = with stdenv.lib; {
    description = "Fast block device synchronizing tool";
    homepage = "https://github.com/TargetHolding/bdsync";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ jluttine ];
  };
}