2018-09-06 14:09:48 +01:00
|
|
|
{ stdenv, fetchurl, makeWrapper
|
2018-09-07 11:22:56 +01:00
|
|
|
, perl, libassuan, libgcrypt
|
|
|
|
, perlPackages, lockfileProgs, gnupg
|
2018-09-06 14:09:48 +01:00
|
|
|
}:
|
2015-08-01 10:03:40 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "monkeysphere-${version}";
|
2018-09-06 14:09:48 +01:00
|
|
|
version = "0.41";
|
2015-08-01 10:03:40 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-09-06 14:09:48 +01:00
|
|
|
url = "http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/monkeysphere_${version}.orig.tar.gz";
|
|
|
|
sha256 = "0jz7kwkwgylqprnl8bwvl084s5gjrilza77ln18i3f6x48b2y6li";
|
2015-08-01 10:03:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./monkeysphere.patch ];
|
|
|
|
|
2018-09-07 11:22:56 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ perl libassuan libgcrypt ];
|
|
|
|
|
2015-08-01 10:03:40 +01:00
|
|
|
makeFlags = ''
|
|
|
|
PREFIX=/
|
|
|
|
DESTDIR=$(out)
|
|
|
|
'';
|
|
|
|
|
2018-09-07 11:22:56 +01:00
|
|
|
postFixup =
|
|
|
|
let wrapMonkeysphere = runtimeDeps: program:
|
|
|
|
"wrapProgram $out/bin/${program} --prefix PERL5LIB : "
|
|
|
|
+ (with perlPackages; stdenv.lib.makePerlPath [
|
|
|
|
CryptOpenSSLRSA
|
|
|
|
CryptOpenSSLBignum
|
|
|
|
])
|
|
|
|
+ stdenv.lib.optionalString
|
|
|
|
(builtins.length runtimeDeps > 0)
|
|
|
|
" --prefix PATH : ${stdenv.lib.makeBinPath runtimeDeps}"
|
|
|
|
+ "\n";
|
|
|
|
wrapPrograms = runtimeDeps: programs: stdenv.lib.concatMapStrings
|
|
|
|
(wrapMonkeysphere runtimeDeps)
|
|
|
|
programs;
|
|
|
|
in wrapPrograms [ gnupg ] [ "monkeysphere-authentication" "monkeysphere-host" ]
|
|
|
|
+ wrapPrograms [ ] [ "../share/monkeysphere/keytrans" "openpgp2ssh" ]
|
|
|
|
+ wrapPrograms [ lockfileProgs ] [ "monkeysphere" ];
|
2015-08-01 10:03:40 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://web.monkeysphere.info/;
|
2015-08-01 11:28:41 +01:00
|
|
|
description = "Leverage the OpenPGP web of trust for SSH and TLS authentication";
|
|
|
|
longDescription = ''
|
2015-08-01 10:03:40 +01:00
|
|
|
The Monkeysphere project's goal is to extend OpenPGP's web of
|
|
|
|
trust to new areas of the Internet to help us securely identify
|
|
|
|
servers we connect to, as well as each other while we work online.
|
|
|
|
The suite of Monkeysphere utilities provides a framework to
|
|
|
|
transparently leverage the web of trust for authentication of
|
|
|
|
TLS/SSL communications through the normal use of tools you are
|
|
|
|
familiar with, such as your web browser0 or secure shell.
|
|
|
|
'';
|
2018-09-06 14:09:48 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2015-08-01 10:03:40 +01:00
|
|
|
platforms = platforms.all;
|
2018-09-06 14:09:48 +01:00
|
|
|
maintainers = with maintainers; [ primeos ];
|
2015-08-01 10:03:40 +01:00
|
|
|
};
|
|
|
|
}
|