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