libosmocore: 0.9.0 -> 0.9.6
add new required talloc, python2 inputs; enableParallelBuilding
This commit is contained in:
parent
de51e4a35b
commit
b32e8ce7d7
@ -1,25 +1,31 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pcsclite, pkgconfig
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||||
|
, pcsclite, talloc, python2
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libosmocore-${version}";
|
name = "libosmocore-${version}";
|
||||||
version = "0.9.0";
|
version = "0.9.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "osmocom";
|
owner = "osmocom";
|
||||||
repo = "libosmocore";
|
repo = "libosmocore";
|
||||||
rev = "8649d57f507d359c99a89654aac7e19ce22db282";
|
rev = "3cc757df1822114bf446dc2d5f6a95da92321a25";
|
||||||
sha256 = "08mcpy9ljwb1i3l4cmlwn024q2psk5gg9f0ylgh99hy1ffx0n7am";
|
sha256 = "0dk7065qcy2kjra0p8q2124p73jcyvvzz3cmhid1kx5scyxmr017";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
propagatedBuildInputs = [
|
||||||
buildInputs = [
|
talloc
|
||||||
pcsclite
|
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
nativeBuildInputs = [
|
||||||
autoreconf -i -f
|
autoreconfHook pkgconfig
|
||||||
'';
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
pcsclite python2
|
||||||
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "libosmocore";
|
description = "libosmocore";
|
||||||
|
Loading…
Reference in New Issue
Block a user