nixpkgs/pkgs/tools/security/meo/default.nix

37 lines
943 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchhg, openssl, pcre-cpp, qt4, boost, pkcs11helper }:
stdenv.mkDerivation {
pname = "meo";
2021-07-29 12:41:22 +00:00
version = "unstable-2012-11-13";
2021-01-15 09:19:50 +00:00
src = fetchhg {
url = "http://oss.stamfest.net/hg/meo";
rev = "b48e5f16cff8";
sha256 = "0ifg7y28s89i9gwda6fyj1jbrykbcvq8bf1m6rxmdcv5afi3arbq";
};
buildFlags = [ "QMAKE=qmake" ];
2016-04-27 10:28:04 +00:00
buildInputs = [ openssl pcre-cpp qt4 boost pkcs11helper ];
preConfigure = ''
sed -i s,-mt$,, meo-gui/meo-gui.pro
'';
installPhase = ''
mkdir -p $out/bin
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; {
homepage = "http://oss.stamfest.net/wordpress/meo-multiple-eyepairs-only";
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;
broken = true;
};
}