51 lines
888 B
Nix
51 lines
888 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
libosmocore,
|
|
ortp,
|
|
bctoolbox,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libosmoabis";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "osmocom";
|
|
repo = "libosmo-abis";
|
|
rev = version;
|
|
hash = "sha256-So1iyxkLaK3Up+6hetY1TultXF3G3Bg0k1WWrfS+3kA=";
|
|
};
|
|
|
|
configureFlags = [ "enable_dahdi=false" ];
|
|
|
|
postPatch = ''
|
|
echo "${version}" > .tarball-version
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libosmocore
|
|
ortp
|
|
bctoolbox
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Osmocom Abis interface library";
|
|
homepage = "https://github.com/osmocom/libosmo-abis";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
markuskowa
|
|
];
|
|
};
|
|
}
|