2017-06-05 11:22:19 +01:00
|
|
|
{ stdenv, lib, fetchurl, fetchFromGitHub
|
2017-02-26 18:36:04 +00:00
|
|
|
, coreutils, gnused, getopt, git, tree, gnupg, which, procps, qrencode
|
2014-06-06 02:22:24 +01:00
|
|
|
, makeWrapper
|
2015-03-21 12:57:01 +00:00
|
|
|
|
|
|
|
, xclip ? null, xdotool ? null, dmenu ? null
|
2015-08-19 19:50:58 +01:00
|
|
|
, x11Support ? !stdenv.isDarwin
|
2014-06-06 02:22:24 +01: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 10:25:13 +01:00
|
|
|
|
2017-06-05 11:22:19 +01:00
|
|
|
let
|
|
|
|
plugins = map (p: (fetchFromGitHub {
|
|
|
|
owner = "roddhjav";
|
|
|
|
repo = "pass-${p.name}";
|
|
|
|
inherit (p) rev sha256;
|
|
|
|
})) [
|
|
|
|
{ name = "import"; rev = "491935bd275f29ceac2b876b3a288011d1ce31e7"; sha256 = "02mbh05ab8h7kc30hz718d1d1vkjz43b96c7p0xnd92610d2q66q"; }
|
|
|
|
{ name = "update"; rev = "cf576c9036fd18efb9ed29e0e9f811207b556fde"; sha256 = "1hhbrg6a2walrvla6q4cd3pgrqbcrf9brzjkb748735shxfn52hd"; }
|
|
|
|
];
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2017-05-05 21:08:44 +01:00
|
|
|
version = "1.7.1";
|
2013-08-03 10:25:13 +01:00
|
|
|
name = "password-store-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://git.zx2c4.com/password-store/snapshot/${name}.tar.xz";
|
2017-05-05 21:08:44 +01:00
|
|
|
sha256 = "0scqkpll2q8jhzcgcsh9kqz0gwdpvynivqjmmbzax2irjfaiklpn";
|
2013-08-03 10:25:13 +01:00
|
|
|
};
|
|
|
|
|
2017-05-05 21:08:44 +01:00
|
|
|
patches = [ ./set-correct-program-name-for-sleep.patch
|
2017-04-10 15:31:00 +01:00
|
|
|
] ++ 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 20:30:08 +01:00
|
|
|
|
2017-02-26 19:54:58 +00:00
|
|
|
installFlags = [ "PREFIX=$(out)" "WITH_ALLCOMP=yes" ];
|
2013-08-03 10:25:13 +01:00
|
|
|
|
2015-02-11 15:29:34 +00:00
|
|
|
postInstall = ''
|
2017-06-05 11:22:19 +01:00
|
|
|
# plugins
|
|
|
|
${stdenv.lib.concatStringsSep "\n" (map (plugin: ''
|
|
|
|
pushd ${plugin}
|
|
|
|
PREFIX=$out make install
|
|
|
|
popd
|
|
|
|
'') plugins)}
|
|
|
|
|
2014-04-30 22:36:05 +01: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 10:25:13 +01:00
|
|
|
'';
|
|
|
|
|
2016-04-13 13:53:51 +01:00
|
|
|
wrapperPath = with stdenv.lib; makeBinPath ([
|
2015-04-15 09:45:43 +01:00
|
|
|
coreutils
|
|
|
|
getopt
|
|
|
|
git
|
|
|
|
gnupg
|
2016-09-19 16:24:38 +01:00
|
|
|
gnused
|
2015-04-15 09:45:43 +01:00
|
|
|
tree
|
|
|
|
which
|
2017-02-26 18:36:04 +00:00
|
|
|
qrencode
|
2016-10-02 17:57:42 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.isLinux procps
|
|
|
|
++ ifEnable x11Support [ dmenu xclip xdotool ]);
|
2015-04-15 09:45:43 +01:00
|
|
|
|
2013-09-26 20:30:08 +01: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 20:30:08 +01:00
|
|
|
|
|
|
|
# Ensure all dependencies are in PATH
|
|
|
|
wrapProgram $out/bin/pass \
|
2015-04-15 09:45:43 +01: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 20:30:08 +01: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 20:30:08 +01:00
|
|
|
}
|