Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / osmocom / libasn1c / default.nix
blobc86475c69b85f95de5ea483580a14930eaeaad6e
1 { lib
2 , stdenv
3 , autoreconfHook
4 , fetchFromGitHub
5 , pkg-config
6 , talloc
7 }:
9 stdenv.mkDerivation rec {
10   pname = "libasn1c";
11   version = "0.9.36";
13   src = fetchFromGitHub {
14     owner = "osmocom";
15     repo = "libasn1c";
16     rev = version;
17     hash = "sha256-Qh4QVssHS6XDfHJBR+y8J5tUhT/6tDg+aF9nX6UAGV8=";
18   };
20   postPatch = ''
21     echo "${version}" > .tarball-version
22   '';
24   nativeBuildInputs = [
25     autoreconfHook
26     pkg-config
27   ];
29   buildInputs = [
30     talloc
31   ];
33   enableParallelBuilding = true;
35   meta = with lib; {
36     description = "Runtime library of Lev Walkin's asn1c split out as separate library";
37     homepage = "https://github.com/osmocom/libasn1c/";
38     license = licenses.bsd2;
39     platforms = platforms.linux;
40     maintainers = with maintainers; [ ];
41   };