about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-12-09 11:18:13 +0100
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-12-09 11:18:13 +0100
commitb2333ed52ae62891a3615f490e8cbdfacb430cb2 (patch)
tree9c53d3e719f37a6dd4f76087911fddfac67d5dd0
parent420d02225438193a6fc32f48f6dc946541026079 (diff)
downloadnixlib-b2333ed52ae62891a3615f490e8cbdfacb430cb2.tar
nixlib-b2333ed52ae62891a3615f490e8cbdfacb430cb2.tar.gz
nixlib-b2333ed52ae62891a3615f490e8cbdfacb430cb2.tar.bz2
nixlib-b2333ed52ae62891a3615f490e8cbdfacb430cb2.tar.lz
nixlib-b2333ed52ae62891a3615f490e8cbdfacb430cb2.tar.xz
nixlib-b2333ed52ae62891a3615f490e8cbdfacb430cb2.tar.zst
nixlib-b2333ed52ae62891a3615f490e8cbdfacb430cb2.zip
rtl-sdr: remove linker-fix.patch
not needed on rtl-sdr-0.6.0
-rw-r--r--pkgs/applications/misc/rtl-sdr/default.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/pkgs/applications/misc/rtl-sdr/default.nix b/pkgs/applications/misc/rtl-sdr/default.nix
index ef9f9d09ac26..aedc847ee69f 100644
--- a/pkgs/applications/misc/rtl-sdr/default.nix
+++ b/pkgs/applications/misc/rtl-sdr/default.nix
@@ -26,13 +26,7 @@ stdenv.mkDerivation rec {
     grep -q "Requires:" "$pcfile" && { echo "Upstream has added 'Requires:' in $(basename "$pcfile"); update nix expression."; exit 1; }
     echo "Requires: libusb-1.0" >> "$pcfile"
   '';
-  patches = lib.optionals stdenv.isDarwin [
-    (fetchpatch {
-      name = "linker-fix.patch";
-      url = "https://github.com/lukeadams/rtl-sdr/commit/7a66dcf268305b5aa507d1756799942c74549b72.patch";
-      sha256 = "0cn9fyf4ay4i3shvxj1ivgyxjvfm401irk560jdjl594nzadrcsl";
-    })
-  ];
+
   meta = with stdenv.lib; {
     description = "Turns your Realtek RTL2832 based DVB dongle into a SDR receiver";
     homepage = http://sdr.osmocom.org/trac/wiki/rtl-sdr;