Add tarsnap package.
This commit is contained in:
parent
f31de09d5c
commit
f5c346d556
2 changed files with 20 additions and 0 deletions
18
pkgs/tools/backup/tarsnap/default.nix
Normal file
18
pkgs/tools/backup/tarsnap/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, fetchurl, openssl, zlib, e2fsprogs }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "tarsnap-1.0.33";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.tarsnap.com/download/tarsnap-autoconf-1.0.33.tgz";
|
||||
sha256 = "0z8bmra3xms9vcgvkiy9fy1j97192z6w7n658j6zr5cniid8438c";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl zlib e2fsprogs ];
|
||||
|
||||
meta = {
|
||||
description = "Online backups for the truly paranoid";
|
||||
homepage = "http://www.tarsnap.com/";
|
||||
maintainers = with stdenv.lib.maintainers; [roconnor];
|
||||
};
|
||||
}
|
|
@ -1517,6 +1517,8 @@ let
|
|||
autoconf = autoconf213;
|
||||
};
|
||||
|
||||
tarsnap = callPackage ../tools/backup/tarsnap { };
|
||||
|
||||
tcpdump = callPackage ../tools/networking/tcpdump { };
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue