nixpkgs/pkgs/tools/security/pass/default.nix

90 lines
2.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl
, coreutils, gnused, getopt, pwgen, git, tree, gnupg, which
, makeWrapper
, xclip ? null, xdotool ? null, dmenu ? null
2015-08-19 21:50:58 +03:00
, x11Support ? !stdenv.isDarwin
}:
assert x11Support -> xclip != null
&& xdotool != null
&& dmenu != null;
2013-08-03 13:25:13 +04:00
stdenv.mkDerivation rec {
2015-02-07 20:45:56 +03:00
version = "1.6.5";
2013-08-03 13:25:13 +04:00
name = "password-store-${version}";
src = fetchurl {
url = "http://git.zx2c4.com/password-store/snapshot/${name}.tar.xz";
2015-02-07 20:45:56 +03:00
sha256 = "05bk3lrp5jwg0v338lvylp7glpliydzz4jf5pjr6k3kagrv3jyik";
2013-08-03 13:25:13 +04:00
};
patches =
[ ./program-name.patch ] ++
stdenv.lib.optional stdenv.isDarwin ./no-darwin-getopt.patch;
2015-02-15 19:14:13 +03:00
buildInputs = [ makeWrapper ];
2013-08-03 13:25:13 +04:00
meta = with stdenv.lib; {
description = "Stores, retrieves, generates, and synchronizes passwords securely";
2016-01-01 22:19:11 +03:00
homepage = http://www.passwordstore.org/;
2013-08-03 13:25:13 +04:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ lovek323 the-kenny ];
2013-08-03 13:25:13 +04: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.
'';
};
2015-02-11 18:29:34 +03:00
preInstall = ''
2014-06-12 04:01:06 +04:00
mkdir -p "$out/share/bash-completion/completions"
2013-08-03 13:25:13 +04:00
mkdir -p "$out/share/zsh/site-functions"
mkdir -p "$out/share/fish/vendor_completions.d"
2015-02-11 18:29:34 +03:00
'';
installFlags = [ "PREFIX=$(out)" ];
2013-08-03 13:25:13 +04:00
2015-02-11 18:29:34 +03:00
postInstall = ''
# Install Emacs Mode. NOTE: We can't install the necessary
# dependencies (s.el and f.el) here. The user has to do this
# himself.
mkdir -p "$out/share/emacs/site-lisp"
cp "contrib/emacs/password-store.el" "$out/share/emacs/site-lisp/"
2013-08-03 13:25:13 +04:00
${if x11Support then ''
cp "contrib/dmenu/passmenu" "$out/bin/"
'' else ""}
2013-08-03 13:25:13 +04:00
'';
wrapperPath = with stdenv.lib; makeSearchPath "bin/" ([
coreutils
gnused
getopt
git
gnupg
2015-05-13 00:38:28 +03:00
pwgen
tree
which
] ++ ifEnable x11Support [ dmenu xclip xdotool ]);
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 : "${wrapperPath}"
'' + stdenv.lib.optionalString x11Support ''
# We just wrap passmenu with the same PATH as pass. It doesn't
# need all the tools in there but it doesn't hurt either.
wrapProgram $out/bin/passmenu \
--prefix PATH : "$out/bin:${wrapperPath}"
'';
}