summaryrefslogtreecommitdiff
path: root/pkgs/turris/crypto-wrapper/default.nix
blob: aa65b177ab7e7e6079c55fa53fe8896253da903a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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";
}