2017-02-26 18:36:04 +00:00
|
|
|
{ stdenv, lib, fetchurl
|
|
|
|
, coreutils, gnused, getopt, git, tree, gnupg, which, procps, qrencode
|
2014-06-06 01:22:24 +00:00
|
|
|
, makeWrapper
|
2015-03-21 12:57:01 +00:00
|
|
|
|
|
|
|
, xclip ? null, xdotool ? null, dmenu ? null
|
2015-08-19 18:50:58 +00:00
|
|
|
, x11Support ? !stdenv.isDarwin
|
2014-06-06 01:22:24 +00:00
|
|
|
}:
|
|
|
|
|
2017-02-26 18:36:04 +00:00
|
|
|
with lib;
|
|
|
|
|
2015-03-21 12:57:01 +00:00
|
|
|
assert x11Support -> xclip != null
|
|
|
|
&& xdotool != null
|
|
|
|
&& dmenu != null;
|
2013-08-03 09:25:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-26 18:36:04 +00:00
|
|
|
version = "1.7";
|
2013-08-03 09:25:13 +00:00
|
|
|
name = "password-store-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://git.zx2c4.com/password-store/snapshot/${name}.tar.xz";
|
2017-02-26 18:36:04 +00:00
|
|
|
sha256 = "002mw7j0m33bw483rllzhcf41wp3ixka8yma6kqrfaj57jyw66hn";
|
2013-08-03 09:25:13 +00:00
|
|
|
};
|
|
|
|
|
2017-02-26 18:36:04 +00:00
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./no-darwin-getopt.patch;
|
2015-02-15 16:14:13 +00:00
|
|
|
|
2017-02-26 19:54:58 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2013-09-26 19:30:08 +00:00
|
|
|
|
2017-02-26 19:54:58 +00:00
|
|
|
installFlags = [ "PREFIX=$(out)" "WITH_ALLCOMP=yes" ];
|
2013-08-03 09:25:13 +00:00
|
|
|
|
2015-02-11 15:29:34 +00:00
|
|
|
postInstall = ''
|
2014-04-30 21:36:05 +00:00
|
|
|
# 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/"
|
2017-02-26 18:36:04 +00:00
|
|
|
'' + optionalString x11Support ''
|
|
|
|
cp "contrib/dmenu/passmenu" "$out/bin/"
|
2013-08-03 09:25:13 +00:00
|
|
|
'';
|
|
|
|
|
2016-04-13 12:53:51 +00:00
|
|
|
wrapperPath = with stdenv.lib; makeBinPath ([
|
2015-04-15 08:45:43 +00:00
|
|
|
coreutils
|
|
|
|
getopt
|
|
|
|
git
|
|
|
|
gnupg
|
2016-09-19 15:24:38 +00:00
|
|
|
gnused
|
2015-04-15 08:45:43 +00:00
|
|
|
tree
|
|
|
|
which
|
2017-02-26 18:36:04 +00:00
|
|
|
qrencode
|
2016-10-02 16:57:42 +00:00
|
|
|
] ++ stdenv.lib.optional stdenv.isLinux procps
|
|
|
|
++ ifEnable x11Support [ dmenu xclip xdotool ]);
|
2015-04-15 08:45:43 +00:00
|
|
|
|
2013-09-26 19:30:08 +00:00
|
|
|
postFixup = ''
|
|
|
|
# Fix program name in --help
|
|
|
|
substituteInPlace $out/bin/pass \
|
2017-02-26 18:36:04 +00:00
|
|
|
--replace 'PROGRAM="''${0##*/}"' "PROGRAM=pass"
|
2013-09-26 19:30:08 +00:00
|
|
|
|
|
|
|
# Ensure all dependencies are in PATH
|
|
|
|
wrapProgram $out/bin/pass \
|
2015-04-15 08:45:43 +00:00
|
|
|
--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}"
|
2013-09-26 19:30:08 +00:00
|
|
|
'';
|
2017-02-26 19:54:58 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Stores, retrieves, generates, and synchronizes passwords securely";
|
|
|
|
homepage = http://www.passwordstore.org/;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ lovek323 the-kenny fpletz ];
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
2013-09-26 19:30:08 +00:00
|
|
|
}
|