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

62 lines
2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl
, coreutils, gnused, getopt, pwgen, git, tree, gnupg
, makeWrapper
, withX ? false, xclip ? null
}:
assert withX -> xclip != null;
2013-08-03 09:25:13 +00:00
stdenv.mkDerivation rec {
2014-08-04 13:54:05 +00:00
version = "1.6.3";
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";
2014-08-04 13:54:05 +00:00
sha256 = "1xs00c7ffqd0093i452kryw9sjip6dkp1pclx69zihb5l45d86fl";
2013-08-03 09:25:13 +00:00
};
2014-05-29 16:46:53 +00:00
patches = [ ./darwin-getopt.patch ];
buildInputs = [ makeWrapper ];
2013-08-03 09:25:13 +00:00
meta = with stdenv.lib; {
description = "Stores, retrieves, generates, and synchronizes passwords securely";
2013-08-03 09:25:13 +00:00
homepage = http://zx2c4.com/projects/password-store/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ lovek323 the-kenny ];
2013-08-03 09:25:13 +00: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 = ''
2014-06-12 00:01:06 +00:00
mkdir -p "$out/share/bash-completion/completions"
2013-08-03 09:25:13 +00:00
mkdir -p "$out/share/zsh/site-functions"
mkdir -p "$out/share/fish/completions"
# 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 09:25:13 +00:00
PREFIX="$out" make install
2013-08-03 09:25:13 +00: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${if withX then ":${xclip}/bin" else ""}"
'';
}