lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 37 lines 779 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config 2, pcsclite, talloc, python2, gnutls 3}: 4 5stdenv.mkDerivation rec { 6 pname = "libosmocore"; 7 version = "1.2.0"; 8 9 src = fetchFromGitHub { 10 owner = "osmocom"; 11 repo = "libosmocore"; 12 rev = version; 13 sha256 = "1535y6r4csvslrxcki80ya6zhhc5jw2nvy9bymb55ln77pf853vg"; 14 }; 15 16 propagatedBuildInputs = [ 17 talloc 18 ]; 19 20 nativeBuildInputs = [ 21 autoreconfHook pkg-config 22 ]; 23 24 buildInputs = [ 25 pcsclite python2 gnutls 26 ]; 27 28 enableParallelBuilding = true; 29 30 meta = with lib; { 31 description = "Set of Osmocom core libraries"; 32 homepage = "https://github.com/osmocom/libosmocore"; 33 license = licenses.gpl2Plus; 34 platforms = platforms.linux; 35 maintainers = with maintainers; [ mog ]; 36 }; 37}