2017-07-12 18:14:07 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
2018-12-08 15:41:01 +00:00
|
|
|
, pcsclite, talloc, python2, gnutls
|
2016-08-26 16:57:14 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libosmocore";
|
2019-08-19 18:38:24 +01:00
|
|
|
version = "1.2.0";
|
2016-08-26 16:57:14 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "osmocom";
|
|
|
|
repo = "libosmocore";
|
2018-12-08 15:41:01 +00:00
|
|
|
rev = version;
|
2019-08-19 18:38:24 +01:00
|
|
|
sha256 = "1535y6r4csvslrxcki80ya6zhhc5jw2nvy9bymb55ln77pf853vg";
|
2016-08-26 16:57:14 +01:00
|
|
|
};
|
|
|
|
|
2017-07-12 18:14:07 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
talloc
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook pkgconfig
|
|
|
|
];
|
|
|
|
|
2016-08-26 16:57:14 +01:00
|
|
|
buildInputs = [
|
2018-12-08 15:41:01 +00:00
|
|
|
pcsclite python2 gnutls
|
2016-08-26 16:57:14 +01:00
|
|
|
];
|
|
|
|
|
2017-07-12 18:14:07 +01:00
|
|
|
enableParallelBuilding = true;
|
2016-08-26 16:57:14 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "libosmocore";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/osmocom/libosmocore";
|
2016-08-26 16:57:14 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2018-12-08 18:37:48 +00:00
|
|
|
platforms = platforms.linux;
|
2016-08-26 16:57:14 +01:00
|
|
|
maintainers = with maintainers; [ mog ];
|
|
|
|
};
|
|
|
|
}
|