2010-05-19 20:59:20 +00:00
|
|
|
{ stdenv, gnupg, coreutils, writeScript }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2017-03-27 19:47:38 +00:00
|
|
|
name = "gnupg1compat-${gnupg.version}";
|
2010-05-19 20:59:20 +00:00
|
|
|
|
|
|
|
builder = writeScript "gnupg1compat-builder" ''
|
|
|
|
# First symlink all top-level dirs
|
|
|
|
${coreutils}/bin/mkdir -p $out
|
2016-03-11 09:54:18 +00:00
|
|
|
${coreutils}/bin/ln -s "${gnupg}/"* $out
|
2010-05-19 20:59:20 +00:00
|
|
|
|
|
|
|
# Replace bin with directory and symlink it contents
|
|
|
|
${coreutils}/bin/rm $out/bin
|
|
|
|
${coreutils}/bin/mkdir -p $out/bin
|
2016-03-11 09:54:18 +00:00
|
|
|
${coreutils}/bin/ln -s "${gnupg}/bin/"* $out/bin
|
2010-05-19 20:59:20 +00:00
|
|
|
'';
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2017-03-27 19:47:38 +00:00
|
|
|
meta = gnupg.meta // {
|
|
|
|
description = gnupg.meta.description +
|
|
|
|
" with symbolic links for gpg and gpgv";
|
2017-04-04 13:48:55 +00:00
|
|
|
priority = -1;
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2010-05-19 20:59:20 +00:00
|
|
|
}
|