mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
03bc71f174
This also fixes the same build failure present in `scrypt-1.2.0`,
which is quite trivial.
(partially cherry picked from commit 54c7053b
)
Signed-off-by: Austin Seipp <aseipp@pobox.com>
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ 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 {
|
|
name = "tarsnap-${version}";
|
|
version = "1.0.36.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.tarsnap.com/download/tarsnap-autoconf-${version}.tgz";
|
|
sha256 = "1446l8g39bi5xxk4x1ijc1qjrj824729887gcffig0zrw80rx452";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
buildInputs = [ openssl zlib e2fsprogs ];
|
|
|
|
meta = {
|
|
description = "Online backups for the truly paranoid";
|
|
homepage = "http://www.tarsnap.com/";
|
|
license = "tarsnap";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice roconnor ];
|
|
};
|
|
}
|