Created
April 14, 2014 21:32
-
-
Save vandenoever/10684163 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchurl, python3, python32Packages, openssl }: | |
let | |
version = "0.12"; | |
in | |
python32Packages.buildPythonPackage rec { | |
name = "attic-${version}"; | |
src = fetchurl { | |
url = "https://pypi.python.org/packages/source/A/Attic/Attic-${version}.tar.gz"; | |
sha256 = "3edeb6965a4ddac6fe8edc6fea49480ec04b3b37a54a975ec61584d4a5a59df1"; | |
}; | |
installPhase = '' | |
python3 setup.py install --prefix=$out | |
''; | |
buildInputs = [ python3 openssl ]; | |
meta = { | |
description = "Attic is a deduplicating backup program written in Python."; | |
homepage = "https://attic-backup.org/"; | |
license = "free"; | |
maintainers = with stdenv.lib.maintainers; [Jonas Borgstrom]; | |
platforms = with stdenv.lib.platforms; linux; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment