about summary refs log tree commit diff
path: root/pkgs/tools/backup/attic/default.nix
blob: 872296162d523726b51efef45cb90d8813eac971 (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
{ stdenv, fetchurl, python3Packages, openssl, acl }:

python3Packages.buildPythonPackage rec {
  name = "attic-0.14";
  namePrefix = "";

  src = fetchurl {
    url = "https://github.com/jborg/attic/archive/0.14.tar.gz";
    sha256 = "929da4b2e900770cd31558e87074ade347b44937c944218549259ea64646f203";
  };

  propagatedBuildInputs = with python3Packages;
    [ cython msgpack openssl acl ];

  preConfigure = ''
    export ATTIC_OPENSSL_PREFIX="${openssl}"
  '';

  meta = with stdenv.lib; {
    description = "A deduplication backup program";
    homepage = "https://attic-backup.org";
    license = licenses.bsd3;
  };
}