mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 08:39:08 +03:00
48 lines
857 B
Nix
48 lines
857 B
Nix
{ lib
|
|
, stdenv
|
|
, autoreconfHook
|
|
, fetchFromGitHub
|
|
, lksctp-tools
|
|
, pkg-config
|
|
, libosmocore
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libosmo-netif";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "osmocom";
|
|
repo = "libosmo-netif";
|
|
rev = version;
|
|
hash = "sha256-NjclrjpgX2ZySxTTjdeiOTOXsOTESLmj2LY89goedKI=";
|
|
};
|
|
|
|
postPatch = ''
|
|
echo "${version}" > .tarball-version
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
lksctp-tools
|
|
libosmocore
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Osmocom network / socket interface library";
|
|
homepage = "https://osmocom.org/projects/libosmo-netif/wiki";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
janik
|
|
markuskowa
|
|
];
|
|
};
|
|
}
|