mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
gpg-mpd: init at 0.7.4 (#16527)
This commit is contained in:
parent
4463f9f3d4
commit
ae3896061b
2 changed files with 36 additions and 0 deletions
34
pkgs/applications/misc/gpg-mdp/default.nix
Normal file
34
pkgs/applications/misc/gpg-mdp/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ fetchurl, stdenv, ncurses, gnupg }:
|
||||||
|
|
||||||
|
let version = "0.7.4";
|
||||||
|
in stdenv.mkDerivation {
|
||||||
|
# mdp renamed to gpg-mdp because there is a mdp package already.
|
||||||
|
name = "gpg-mdp-${version}";
|
||||||
|
meta = {
|
||||||
|
homepage = https://tamentis.com/projects/mdp/;
|
||||||
|
license = [stdenv.lib.licenses.isc];
|
||||||
|
description = "Manage your passwords with GnuPG and a text editor";
|
||||||
|
};
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://tamentis.com/projects/mdp/files/mdp-${version}.tar.gz";
|
||||||
|
sha256 = "04mdnx4ccpxf9m2myy9nvpl9ma4jgzmv9bkrzv2b9affzss3r34g";
|
||||||
|
};
|
||||||
|
buildInputs = [ ncurses ];
|
||||||
|
prePatch = ''
|
||||||
|
substituteInPlace ./configure \
|
||||||
|
--replace "alias echo=/bin/echo" ""
|
||||||
|
|
||||||
|
substituteInPlace ./src/config.c \
|
||||||
|
--replace "/usr/bin/gpg" "${gnupg}/bin/gpg2" \
|
||||||
|
--replace "/usr/bin/vi" "vi"
|
||||||
|
|
||||||
|
substituteInPlace ./mdp.1 \
|
||||||
|
--replace "/usr/bin/gpg" "${gnupg}/bin/gpg2"
|
||||||
|
'';
|
||||||
|
# we add symlinks to the binary and man page with the name 'gpg-mdp', in case
|
||||||
|
# the completely unrelated program also named 'mdp' is already installed.
|
||||||
|
postFixup = ''
|
||||||
|
ln -s $out/bin/mdp $out/bin/gpg-mdp
|
||||||
|
ln -s $out/share/man/man1/mdp.1.gz $out/share/man/man1/gpg-mdp.1.gz
|
||||||
|
'';
|
||||||
|
}
|
|
@ -12831,6 +12831,8 @@ in
|
||||||
|
|
||||||
evopedia = callPackage ../applications/misc/evopedia { };
|
evopedia = callPackage ../applications/misc/evopedia { };
|
||||||
|
|
||||||
|
gpg-mdp = callPackage ../applications/misc/gpg-mdp { };
|
||||||
|
|
||||||
keepassx = callPackage ../applications/misc/keepassx { };
|
keepassx = callPackage ../applications/misc/keepassx { };
|
||||||
keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { };
|
keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue