2013-09-26 21:30:08 +02:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, coreutils, gnused, getopt, pwgen, git, tree, gnupg
|
|
|
|
, makeWrapper }:
|
2013-08-03 11:25:13 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.4.2";
|
|
|
|
name = "password-store-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://git.zx2c4.com/password-store/snapshot/${name}.tar.xz";
|
|
|
|
sha256 = "00m3q6dihrhw8cxsrham3bdqg5841an8ch4s3a4k5fynlcb802m1";
|
|
|
|
};
|
|
|
|
|
2013-09-26 21:30:08 +02:00
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
|
2013-08-03 11:25:13 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-09-26 21:30:08 +02:00
|
|
|
description = "Stores, retrieves, generates, and synchronizes passwords securely";
|
2013-08-03 11:25:13 +02:00
|
|
|
homepage = http://zx2c4.com/projects/password-store/;
|
|
|
|
license = licenses.gpl2Plus;
|
2013-09-26 21:30:08 +02:00
|
|
|
maintainers = with maintainers; [ lovek323 the-kenny ];
|
2013-08-03 11:25:13 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
pass is a very simple password store that keeps passwords inside gpg2
|
|
|
|
encrypted files inside a simple directory tree residing at
|
|
|
|
~/.password-store. The pass utility provides a series of commands for
|
|
|
|
manipulating the password store, allowing the user to add, remove, edit,
|
|
|
|
synchronize, generate, and manipulate passwords.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
# link zsh and fish completions
|
|
|
|
sed -ie '22s/^#//' Makefile
|
|
|
|
sed -ie '25s/^#//' Makefile
|
|
|
|
sed -i 's/find /find -L /' contrib/pass.zsh-completion
|
|
|
|
mkdir -p "$out/share/zsh/site-functions"
|
|
|
|
mkdir -p "$out/share/fish/completions"
|
|
|
|
|
|
|
|
# use gnused
|
|
|
|
sed -i 's/sed -i ""/sed -i /' Makefile
|
|
|
|
|
|
|
|
SYSCONFDIR="$out/etc" PREFIX="$out" make install
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
# use nix-supplied getopt
|
|
|
|
sed -ie '34c GETOPT="${getopt}/bin/getopt"' \
|
|
|
|
"$out/lib/password-store.platform.sh"
|
|
|
|
'';
|
|
|
|
|
2013-09-26 21:30:08 +02:00
|
|
|
postFixup = ''
|
|
|
|
# Fix program name in --help
|
|
|
|
substituteInPlace $out/bin/pass \
|
|
|
|
--replace "\$program" "pass"
|
|
|
|
|
|
|
|
# Ensure all dependencies are in PATH
|
|
|
|
wrapProgram $out/bin/pass \
|
|
|
|
--prefix PATH : "${coreutils}/bin:${gnused}/bin:${getopt}/bin:${gnupg}/bin:${git}/bin:${tree}/bin:${pwgen}/bin"
|
|
|
|
'';
|
|
|
|
}
|