mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
nixpkgs: touchup tarsnap formula
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
4fdb99d31e
commit
cec55d6c15
@ -1,7 +1,8 @@
|
||||
{ stdenv, fetchurl, openssl, zlib, e2fsprogs }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "tarsnap-1.0.35";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tarsnap-${version}";
|
||||
version = "1.0.35";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.tarsnap.com/download/tarsnap-autoconf-1.0.35.tgz";
|
||||
@ -12,7 +13,9 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = {
|
||||
description = "Online backups for the truly paranoid";
|
||||
homepage = "http://www.tarsnap.com/";
|
||||
maintainers = with stdenv.lib.maintainers; [roconnor];
|
||||
homepage = "http://www.tarsnap.com/";
|
||||
license = "tarsnap";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ thoughtpolice roconnor ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user