summary refs log tree commit diff
path: root/pkgs/tools/backup/ddar/default.nix
blob: ce65ef4eb80b39491ae42a8c67219ddf7c97ee11 (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
{ lib, buildPythonApplication, fetchFromGitHub, protobuf, roundup }:

buildPythonApplication rec {
  pname = "ddar";
  version = "1.0";

  src = fetchFromGitHub {
    owner = "basak";
    repo = pname;
    rev = "v${version}";
    sha256 = "158jdy5261k9yw540g48hddy5zyqrr81ir9fjlcy4jnrwfkg7ynm";
  };

  prePatch = ''
    substituteInPlace t/local-functions \
      --replace 'PATH="$ddar_src:$PATH"' 'PATH="$out/bin:$PATH"'
    # Test requires additional software and compilation of some C programs
    substituteInPlace t/basic-test.sh \
      --replace it_stores_and_extracts_corpus0 dont_test
  '';

  preBuild = ''
    make -f Makefile.prep synctus/ddar_pb2.py
  '';

  propagatedBuildInputs = [ protobuf ];

  checkInputs = [ roundup ];

  checkPhase = ''
    roundup t/basic-test.sh
  '';

  meta = with lib; {
    description = "Unix de-duplicating archiver";
    license = licenses.gpl3;
    homepage = src.meta.homepage;
  };
}