mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
b526c0fbb2
It seems to have happened the same thing as in
2c89d0b82d
: the hash changed but
apparently no new commit was added...
28 lines
762 B
Nix
28 lines
762 B
Nix
{ stdenv, fetchzip, python3Packages, openssl, acl }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
name = "attic-0.15";
|
|
namePrefix = "";
|
|
|
|
src = fetchzip {
|
|
name = "${name}-src";
|
|
url = "https://github.com/jborg/attic/archive/0.15.tar.gz";
|
|
sha256 = "0c5rsxxcg897a619cbv75hzi1ahpkym8dccf6y3jlcs98z11vm5d";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages;
|
|
[ cython msgpack openssl acl llfuse ];
|
|
|
|
preConfigure = ''
|
|
export ATTIC_OPENSSL_PREFIX="${openssl}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A deduplication backup program";
|
|
homepage = "https://attic-backup.org";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.wscott ];
|
|
platforms = platforms.unix; # Darwin and FreeBSD mentioned on homepage
|
|
};
|
|
}
|