2c89d0b82d
I don't know what changed, but apparently something did. We're using fetchzip and the 0.14 tag doesn't seem to have moved (AFAICS). Build and run-tested. For reference, the (current) annotated tag '0.14' is dated "Wed Dec 17 23:32:11 2014 +0100" and points to commit f342621dff8065b29aeda238ccce5ac92d04f5b6 ("Preparing release").
27 lines
736 B
Nix
27 lines
736 B
Nix
{ stdenv, fetchzip, python3Packages, openssl, acl }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
name = "attic-0.14";
|
|
namePrefix = "";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/jborg/attic/archive/0.14.tar.gz";
|
|
sha256 = "1ij99dmd571rvk3kz97vs7wbjj2pbbd54l310lydnwywxhqs8hrv";
|
|
};
|
|
|
|
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
|
|
};
|
|
}
|