summary refs log tree commit diff
path: root/pkgs/development/libraries/quickder/default.nix
blob: 28933f96fa1c7b813bde40745e7beefc6c7ea4a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{ lib, stdenv, fetchFromGitHub, python2Packages, hexio
, cmake, bash, arpa2cm, git, asn2quickder }:

stdenv.mkDerivation rec {
  pname = "quickder";
  version = "1.3.0";

  src = fetchFromGitHub {
    sha256 = "15lxv8vcjnsjxg7ywcac5p6mj5vf5pxq1219yap653ci4f1liqfr";
    rev = "version-${version}";
    owner = "vanrein";
    repo = "quick-der";
  };

  nativeBuildInputs = [ cmake ];

  buildInputs = with python2Packages; [
    arpa2cm
    asn1ate
    hexio
    pyparsing
    python
    six
    asn1ate
    asn2quickder
  ];

  postPatch = ''
    substituteInPlace ./CMakeLists.txt \
      --replace "get_version_from_git" "set (Quick-DER_VERSION 1.2) #"
    substituteInPlace ./CMakeLists.txt \
      --replace \$\{ARPA2CM_TOOLCHAIN_DIR} "$out/share/ARPA2CM/toolchain/"
    patchShebangs python/scripts/
  '';

  cmakeFlags = [
    "-DNO_TESTING=ON"
    "-DARPA2CM_TOOLCHAIN_DIR=$out/share/ARPA2CM/toolchain/"
  ];

  preConfigure = ''
    export PREFIX=$out
  '';

  meta = with lib; {
    description = "Quick (and Easy) DER, a Library for parsing ASN.1";
    homepage = "https://github.com/vanrein/quick-der";
    license = licenses.bsd2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ leenaars ];
  };
}