nixpkgs: touchup tarsnap formula

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2015-08-17 21:48:08 -05:00
parent 4fdb99d31e
commit cec55d6c15

View File

@ -1,7 +1,8 @@
{ stdenv, fetchurl, openssl, zlib, e2fsprogs }: { stdenv, fetchurl, openssl, zlib, e2fsprogs }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "tarsnap-1.0.35"; name = "tarsnap-${version}";
version = "1.0.35";
src = fetchurl { src = fetchurl {
url = "https://www.tarsnap.com/download/tarsnap-autoconf-1.0.35.tgz"; url = "https://www.tarsnap.com/download/tarsnap-autoconf-1.0.35.tgz";
@ -12,7 +13,9 @@ stdenv.mkDerivation {
meta = { meta = {
description = "Online backups for the truly paranoid"; description = "Online backups for the truly paranoid";
homepage = "http://www.tarsnap.com/"; homepage = "http://www.tarsnap.com/";
maintainers = with stdenv.lib.maintainers; [roconnor]; license = "tarsnap";
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice roconnor ];
}; };
} }