summary refs log tree commit diff
path: root/pkgs/os-specific/linux/libnl
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-09-02 17:57:50 -0500
committerWill Dietz <w@wdtz.org>2019-09-03 19:15:05 -0500
commit04689181701f0877bfc64248001e006ba53e0646 (patch)
treebf8fb9bf2b8e931eac89bb3a8e6916bec4e18474 /pkgs/os-specific/linux/libnl
parent725bf6f85f0d82a95a5ea4d255d79ef09860c332 (diff)
downloadnixpkgs-04689181701f0877bfc64248001e006ba53e0646.tar
nixpkgs-04689181701f0877bfc64248001e006ba53e0646.tar.gz
nixpkgs-04689181701f0877bfc64248001e006ba53e0646.tar.bz2
nixpkgs-04689181701f0877bfc64248001e006ba53e0646.tar.lz
nixpkgs-04689181701f0877bfc64248001e006ba53e0646.tar.xz
nixpkgs-04689181701f0877bfc64248001e006ba53e0646.tar.zst
nixpkgs-04689181701f0877bfc64248001e006ba53e0646.zip
libnl: drop musl patch, optimistically.
Builds, at least, without it :).
Diffstat (limited to 'pkgs/os-specific/linux/libnl')
-rw-r--r--pkgs/os-specific/linux/libnl/default.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/pkgs/os-specific/linux/libnl/default.nix b/pkgs/os-specific/linux/libnl/default.nix
index 2d42714403a..b3ccda3b50d 100644
--- a/pkgs/os-specific/linux/libnl/default.nix
+++ b/pkgs/os-specific/linux/libnl/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, file, lib, fetchFromGitHub, fetchpatch, autoreconfHook, bison, flex, pkgconfig
+{ stdenv, file, lib, fetchFromGitHub, autoreconfHook, bison, flex, pkgconfig
 , pythonSupport ? stdenv.buildPlatform == stdenv.hostPlatform, swig ? null, python}:
 
 stdenv.mkDerivation rec {
@@ -14,12 +14,6 @@ stdenv.mkDerivation rec {
 
   outputs = [ "bin" "dev" "out" "man" ] ++ lib.optional pythonSupport "py";
 
-  patches = stdenv.lib.optional stdenv.hostPlatform.isMusl
-    (fetchpatch {
-      url = "https://raw.githubusercontent.com/gentoo/musl/48d2a28710ae40877fd3e178ead1fb1bb0baa62c/dev-libs/libnl/files/libnl-3.3.0_rc1-musl.patch";
-      sha256 = "0dd7xxikib201i99k2if066hh7gwf2i4ffckrjplq6lr206jn00r";
-    });
-
   enableParallelBuilding = true;
 
   nativeBuildInputs = [ autoreconfHook bison flex pkgconfig file ]