2022-05-14 15:40:33 +00:00
|
|
|
{ fetchurl, fetchpatch, lib, stdenv, ncurses, gnupg }:
|
2016-07-19 09:09:20 +00:00
|
|
|
|
|
|
|
let version = "0.7.4";
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
# mdp renamed to gpg-mdp because there is a mdp package already.
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "gpg-mdp";
|
|
|
|
inherit version;
|
2016-07-19 09:09:20 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://tamentis.com/projects/mdp/";
|
2021-01-15 05:42:41 +00:00
|
|
|
license = [lib.licenses.isc];
|
2016-07-19 09:09:20 +00:00
|
|
|
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";
|
|
|
|
};
|
2022-05-14 15:40:33 +00:00
|
|
|
patches = [
|
|
|
|
# Pull fix pending upstream inclusion for -fno-common toolchain support:
|
|
|
|
# https://github.com/tamentis/mdp/pull/9
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fno-common.patch";
|
|
|
|
url = "https://github.com/tamentis/mdp/commit/95c77de3beb96dc7c76ff36d3f3dfb18411d7c54.patch";
|
|
|
|
sha256 = "1j6yvjzkx31b758yav4arhlm5ig7phl8mgx4fcwj7lm2pfvzwcsz";
|
|
|
|
})
|
|
|
|
];
|
2016-07-19 09:09:20 +00:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace ./configure \
|
|
|
|
--replace "alias echo=/bin/echo" ""
|
|
|
|
|
|
|
|
substituteInPlace ./src/config.c \
|
2017-08-10 09:43:48 +00:00
|
|
|
--replace "/usr/bin/gpg" "${gnupg}/bin/gpg" \
|
2016-07-19 09:09:20 +00:00
|
|
|
--replace "/usr/bin/vi" "vi"
|
|
|
|
|
|
|
|
substituteInPlace ./mdp.1 \
|
2017-08-10 09:43:48 +00:00
|
|
|
--replace "/usr/bin/gpg" "${gnupg}/bin/gpg"
|
2016-07-19 09:09:20 +00:00
|
|
|
'';
|
|
|
|
# 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
|
|
|
|
'';
|
|
|
|
}
|