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 {
|
|
|
|
name = "libosmocore-${version}";
|
2019-06-02 04:32:44 +01:00
|
|
|
version = "1.1.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-06-02 04:32:44 +01:00
|
|
|
sha256 = "1ayxpq03mv547sirdy3j9vnsjd1q07adhwwnl3wffz3c39wlax68";
|
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";
|
|
|
|
homepage = https://github.com/osmocom/libosmocore;
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|