63 lines
984 B
Nix
63 lines
984 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
stdenv,
|
||
|
|
autoreconfHook,
|
||
|
|
fetchFromGitHub,
|
||
|
|
gnutls,
|
||
|
|
libmnl,
|
||
|
|
liburing,
|
||
|
|
libusb1,
|
||
|
|
lksctp-tools,
|
||
|
|
pcsclite,
|
||
|
|
pkg-config,
|
||
|
|
python3,
|
||
|
|
talloc,
|
||
|
|
}:
|
||
|
|
|
||
|
|
stdenv.mkDerivation rec {
|
||
|
|
pname = "libosmocore";
|
||
|
|
version = "1.11.1";
|
||
|
|
|
||
|
|
src = fetchFromGitHub {
|
||
|
|
owner = "osmocom";
|
||
|
|
repo = "libosmocore";
|
||
|
|
rev = version;
|
||
|
|
hash = "sha256-JR1L2ffVqvhylrYWPnWKQ/iihx6in7B3iP6Mo0MHbpw=";
|
||
|
|
};
|
||
|
|
|
||
|
|
postPatch = ''
|
||
|
|
echo "${version}" > .tarball-version
|
||
|
|
'';
|
||
|
|
|
||
|
|
propagatedBuildInputs = [
|
||
|
|
talloc
|
||
|
|
libmnl
|
||
|
|
];
|
||
|
|
|
||
|
|
nativeBuildInputs = [
|
||
|
|
autoreconfHook
|
||
|
|
pkg-config
|
||
|
|
python3
|
||
|
|
];
|
||
|
|
|
||
|
|
buildInputs = [
|
||
|
|
gnutls
|
||
|
|
liburing
|
||
|
|
libusb1
|
||
|
|
lksctp-tools
|
||
|
|
pcsclite
|
||
|
|
];
|
||
|
|
|
||
|
|
enableParallelBuilding = true;
|
||
|
|
|
||
|
|
meta = with lib; {
|
||
|
|
description = "Set of Osmocom core libraries";
|
||
|
|
homepage = "https://github.com/osmocom/libosmocore";
|
||
|
|
license = licenses.gpl2Plus;
|
||
|
|
platforms = platforms.linux;
|
||
|
|
maintainers = with maintainers; [
|
||
|
|
mog
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|