2016-04-27 11:28:04 +01:00
|
|
|
{ stdenv, fetchhg, openssl, pcre-cpp, qt4, boost, pkcs11helper }:
|
2013-05-20 22:12:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "meo-20121113";
|
|
|
|
|
|
|
|
src = fetchhg {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "http://oss.stamfest.net/hg/meo";
|
2014-06-28 19:33:28 +01:00
|
|
|
rev = "b48e5f16cff8";
|
2013-05-20 22:12:21 +01:00
|
|
|
sha256 = "0ifg7y28s89i9gwda6fyj1jbrykbcvq8bf1m6rxmdcv5afi3arbq";
|
|
|
|
};
|
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
buildFlags = [ "QMAKE=qmake" ];
|
2013-05-20 22:12:21 +01:00
|
|
|
|
2016-04-27 11:28:04 +01:00
|
|
|
buildInputs = [ openssl pcre-cpp qt4 boost pkcs11helper ];
|
2013-05-20 22:12:21 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i s,-mt$,, meo-gui/meo-gui.pro
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2014-06-30 13:56:10 +01:00
|
|
|
mkdir -p $out/bin
|
2013-05-20 22:12:21 +01:00
|
|
|
cp tools/{meo,p11} $out/bin
|
|
|
|
cp meo-gui/meo-gui $out/bin
|
|
|
|
cp meo-gui/meo-gui $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://oss.stamfest.net/wordpress/meo-multiple-eyepairs-only";
|
2013-05-20 22:12:21 +01:00
|
|
|
description = "Tools to use cryptography for things like four-eyes principles";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.agpl3Plus;
|
2013-05-20 22:12:21 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2019-10-07 16:20:23 +01:00
|
|
|
broken = true;
|
2013-05-20 22:12:21 +01:00
|
|
|
};
|
|
|
|
}
|