nixpkgs/pkgs/tools/backup/tarsnap/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

2012-10-21 01:03:13 +00:00
{ stdenv, fetchurl, openssl, zlib, e2fsprogs }:
let
zshCompletion = fetchurl {
url = "https://gist.githubusercontent.com/thoughtpolice/daa9431044883d3896f6/raw/282360677007db9739e5bf229873d3b231eb303a/tarsnap.zsh";
sha256 = "0pawqwichzpz29rva7mh8lpx4zznnrh2rqyzzj6h7z98l0dxpair";
};
in
stdenv.mkDerivation rec {
pname = "tarsnap";
2017-07-30 15:12:28 +00:00
version = "1.0.39";
2012-10-21 01:03:13 +00:00
src = fetchurl {
url = "https://www.tarsnap.com/download/tarsnap-autoconf-${version}.tgz";
2017-07-30 15:12:28 +00:00
sha256 = "10i0whbmb345l2ggnf4vs66qjcyf6hmlr8f4nqqcfq0h5a5j24sn";
2012-10-21 01:03:13 +00:00
};
preConfigure = ''
configureFlags="--with-bash-completion-dir=$out/etc/bash_completion.d"
'';
patchPhase = ''
substituteInPlace Makefile.in \
--replace "command -p mv" "mv"
'';
postInstall = ''
# Install some handy-dandy shell completions
install -m 444 -D ${zshCompletion} $out/share/zsh/site-functions/_tarsnap
'';
2017-02-06 02:18:09 +00:00
buildInputs = [ openssl zlib ] ++ stdenv.lib.optional stdenv.isLinux e2fsprogs ;
2012-10-21 01:03:13 +00:00
meta = {
description = "Online backups for the truly paranoid";
homepage = "http://www.tarsnap.com/";
license = stdenv.lib.licenses.unfree;
2017-02-06 02:18:09 +00:00
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice roconnor ];
2012-10-21 01:03:13 +00:00
};
}