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

49 lines
1.1 KiB
Nix
Raw Normal View History

2018-01-04 16:04:22 +00:00
{ stdenv
, fetchFromGitHub
2018-01-04 16:04:22 +00:00
, cmake
, sqlite
, botan2
2018-05-16 16:26:03 +00:00
, boost
2018-01-04 16:04:22 +00:00
, curl
, gettext
, pkgconfig
, libusb
, gnutls }:
stdenv.mkDerivation rec {
pname = "neopg";
2018-05-16 16:26:03 +00:00
version = "0.0.6";
2018-01-04 16:04:22 +00:00
src = fetchFromGitHub {
owner = "das-labor";
repo = "neopg";
2018-05-28 12:59:57 +00:00
rev = "v${version}";
2018-05-16 16:26:03 +00:00
sha256 = "15xp5w046ix59cfrhh8ka4camr0d8qqw643g184sqrcqwpk7nbrx";
fetchSubmodules = true;
2018-01-04 16:04:22 +00:00
};
nativeBuildInputs = [ pkgconfig ];
2018-05-16 16:26:03 +00:00
buildInputs = [ cmake sqlite botan2 boost curl gettext libusb gnutls ];
2018-01-04 16:04:22 +00:00
doCheck = true;
checkTarget = "test";
2018-05-16 16:26:03 +00:00
dontUseCmakeBuildDir = true;
2018-01-04 16:04:22 +00:00
2018-05-16 16:26:03 +00:00
preCheck = ''
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/3rdparty/googletest/googletest:$(pwd)/neopg
2018-01-04 16:04:22 +00:00
'';
meta = with stdenv.lib; {
homepage = https://neopg.io/;
description = "Modern replacement for GnuPG 2";
license = licenses.gpl3;
longDescription = ''
NeoPG starts as an opiniated fork of GnuPG 2 to clean up the code and make it easier to develop.
It is written in C++11.
'';
maintainers = with maintainers; [ erictapen ];
platforms = platforms.linux;
};
}