diff options
author | Karel Kočí <cynerd@email.cz> | 2022-04-09 10:17:34 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-04-09 10:17:34 +0200 |
commit | bd9812fab0daea5f0911047a70494dc25089ac79 (patch) | |
tree | a96d9955b6aee8c5dcc435c551a5c2c724dd945e /pkgs/turris/crypto-wrapper | |
download | nixsentinel-bd9812fab0daea5f0911047a70494dc25089ac79.tar.gz nixsentinel-bd9812fab0daea5f0911047a70494dc25089ac79.tar.bz2 nixsentinel-bd9812fab0daea5f0911047a70494dc25089ac79.zip |
This was taken from nixturris.
Diffstat (limited to 'pkgs/turris/crypto-wrapper')
-rw-r--r-- | pkgs/turris/crypto-wrapper/default.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/turris/crypto-wrapper/default.nix b/pkgs/turris/crypto-wrapper/default.nix new file mode 100644 index 0000000..aa65b17 --- /dev/null +++ b/pkgs/turris/crypto-wrapper/default.nix @@ -0,0 +1,24 @@ +{ stdenv, lib, fetchgit +}: + +stdenv.mkDerivation rec { + pname = "turris-crypto-wrapper"; + version = "0.4"; + meta = with lib; { + homepage = "https://gitlab.nic.cz/turris/crypto-wrapper"; + description = ""; + license = licenses.gpl3; + }; + + src = fetchgit { + url = "https://gitlab.nic.cz/turris/crypto-wrapper.git"; + rev = "v" + version; + sha256 = "1ly37cajkmgqmlj230h5az9m2m1rgvf4r0bf94yipp80wl0z215s"; + }; + + buildInputs = [czmq msgpack libevent base64c logc-0_1 logc-libs]; + nativeBuildInputs = [bootstrapHook pkg-config gperf]; + depsBuildBuild = [check]; + + configureFlags = lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "--enable-tests"; +} |