2012-10-21 02:03:13 +01:00
|
|
|
{ stdenv, fetchurl, openssl, zlib, e2fsprogs }:
|
|
|
|
|
2015-08-18 03:48:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tarsnap-${version}";
|
|
|
|
version = "1.0.35";
|
2012-10-21 02:03:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-25 11:49:25 +01:00
|
|
|
url = "https://www.tarsnap.com/download/tarsnap-autoconf-1.0.35.tgz";
|
|
|
|
sha256 = "16lc14rwrq84fz95j1g10vv0qki0qw73lzighidj5g23pib6g7vc";
|
2012-10-21 02:03:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl zlib e2fsprogs ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Online backups for the truly paranoid";
|
2015-08-18 03:48:08 +01:00
|
|
|
homepage = "http://www.tarsnap.com/";
|
|
|
|
license = "tarsnap";
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice roconnor ];
|
2012-10-21 02:03:13 +01:00
|
|
|
};
|
|
|
|
}
|