attic: expression cleanup

Clean up some whitespace errors and add namePrefix = "" to make package
name like attribute name (no pythonX.Y- prefix).
This commit is contained in:
Bjørn Forsman 2014-12-18 08:14:52 +01:00
parent 110333abd3
commit a8af7f16ce

View File

@ -1,7 +1,8 @@
{stdenv, fetchurl, python3Packages, openssl, acl }:
{ stdenv, fetchurl, python3Packages, openssl, acl }:
python3Packages.buildPythonPackage rec {
name = "attic-0.13";
namePrefix = "";
src = fetchurl {
url = "https://github.com/jborg/attic/archive/0.13.tar.gz";
@ -18,6 +19,6 @@ python3Packages.buildPythonPackage rec {
meta = with stdenv.lib; {
description = "A deduplication backup program";
homepage = "https://attic-backup.org";
license = stdenv.lib.licenses.bsd3;
license = licenses.bsd3;
};
}