pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / osmocom / libasn1c / default.nix
blobb727b1b1ee6998c9c3f81f97359a70a0bed2d01b
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.37";
13   src = fetchFromGitHub {
14     owner = "osmocom";
15     repo = "libasn1c";
16     rev = version;
17     hash = "sha256-st5KbAUhNFSJ0DmPFYOnNvDQ8xtTNi4t8DNYvEjt9Ns=";
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 = [ ];
41   };