libnl: 3.3.0 -> 3.4.0
This commit is contained in:
parent
b33e666b0a
commit
d9dadce758
2 changed files with 6 additions and 3 deletions
|
@ -1,14 +1,14 @@
|
|||
{ stdenv, lib, fetchFromGitHub, fetchpatch, autoreconfHook, bison, flex, pkgconfig }:
|
||||
|
||||
let version = "3.3.0"; in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libnl-${version}";
|
||||
version = "3.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = "libnl";
|
||||
owner = "thom311";
|
||||
rev = "libnl${lib.replaceStrings ["."] ["_"] version}";
|
||||
sha256 = "1796kyq2lkhz2802v9kp32vlxf8ynlyqgyw9nhmry3qh5d0ahcsv";
|
||||
sha256 = "1bqf1f5glwf285sa98k5pkj9gg79lliixk1jk85j63v5510fbagp";
|
||||
};
|
||||
|
||||
outputs = [ "bin" "dev" "out" "man" ];
|
||||
|
|
|
@ -6951,6 +6951,9 @@ in {
|
|||
|
||||
pylru = callPackage ../development/python-modules/pylru { };
|
||||
|
||||
libnl-python = disabledIf isPy3k
|
||||
(toPythonModule (pkgs.libnl.override{pythonSupport=true; inherit python; })).py;
|
||||
|
||||
lark-parser = callPackage ../development/python-modules/lark-parser { };
|
||||
|
||||
lazy-object-proxy = buildPythonPackage rec {
|
||||
|
|
Loading…
Reference in a new issue