about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/asn1c/default.nix
blob: 3cbb7577f34c0927bea515ebdea82f44bdadb598 (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
{ stdenv, fetchurl, perl }:

stdenv.mkDerivation rec {
  pname = "asn1c";
  version = "0.9.28";

  src = fetchurl {
    url = "https://lionet.info/soft/asn1c-${version}.tar.gz";
    sha256 = "1fc64g45ykmv73kdndr4zdm4wxhimhrir4rxnygxvwkych5l81w0";
  };

  outputs = [ "out" "doc" "man" ];

  buildInputs = [ perl ];

  preConfigure = ''
    patchShebangs examples/crfc2asn1.pl
  '';

  postInstall = ''
    cp -r skeletons/standard-modules $out/share/asn1c
  '';

  doCheck = true;

  meta = with stdenv.lib; {
    homepage = http://lionet.info/asn1c/compiler.html;
    description = "Open Source ASN.1 Compiler";
    license = licenses.bsd2;
    platforms = platforms.all;
    maintainers = [ maintainers.montag451 ];
  };
}