{ 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"; }