Skip to content

Commit

Permalink
libosmocore: 1.2.0 -> 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
armeenm committed Apr 25, 2022
1 parent 90e5818 commit 9f5af25
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions pkgs/applications/misc/libosmocore/default.nix
Original file line number Diff line number Diff line change
@@ -1,28 +1,43 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, pcsclite, talloc, python2, gnutls
{ lib, stdenv
, autoreconfHook
, fetchFromGitHub
, gnutls
, libmnl
, libusb1
, lksctp-tools
, pcsclite
, pkg-config
, python3
, talloc
}:

stdenv.mkDerivation rec {
pname = "libosmocore";
version = "1.2.0";
version = "1.6.0";

src = fetchFromGitHub {
owner = "osmocom";
repo = "libosmocore";
rev = version;
sha256 = "1535y6r4csvslrxcki80ya6zhhc5jw2nvy9bymb55ln77pf853vg";
hash = "sha256-AjOyZiLlXhsetbyMBuUssoNxk22LzGOkZpeLt4vKli4=";
};

propagatedBuildInputs = [
talloc
];

nativeBuildInputs = [
autoreconfHook pkg-config
autoreconfHook
pkg-config
python3
];

buildInputs = [
pcsclite python2 gnutls
gnutls
libmnl
libusb1
lksctp-tools
pcsclite
];

enableParallelBuilding = true;
Expand Down

0 comments on commit 9f5af25

Please sign in to comment.