summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-05-13 03:16:59 +0300
committerxeji <36407913+xeji@users.noreply.github.com>2018-05-13 02:16:59 +0200
commit59edce641426242e510aa5dc7c16cf5d9da0d821 (patch)
treef6c2b939228159517c24b1ac453738db27839ca5 /pkgs/os-specific
parent78fba374c47f487824dbd4c75ba7f0366f61608c (diff)
downloadnixlib-59edce641426242e510aa5dc7c16cf5d9da0d821.tar
nixlib-59edce641426242e510aa5dc7c16cf5d9da0d821.tar.gz
nixlib-59edce641426242e510aa5dc7c16cf5d9da0d821.tar.bz2
nixlib-59edce641426242e510aa5dc7c16cf5d9da0d821.tar.lz
nixlib-59edce641426242e510aa5dc7c16cf5d9da0d821.tar.xz
nixlib-59edce641426242e510aa5dc7c16cf5d9da0d821.tar.zst
nixlib-59edce641426242e510aa5dc7c16cf5d9da0d821.zip
kernel: drop tuxOnIce patch (#40411)
Hasn't been updated since 3.14, abandoned by its author, not actually used despite being inside a let binding.
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/patches.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix
index 4ba182ea5a59..fb28bba1c32f 100644
--- a/pkgs/os-specific/linux/kernel/patches.nix
+++ b/pkgs/os-specific/linux/kernel/patches.nix
@@ -1,26 +1,6 @@
 { stdenv, fetchurl, fetchpatch, pkgs }:
 
-let
-
-  makeTuxonicePatch = { version, kernelVersion, sha256,
-    url ? "http://tuxonice.nigelcunningham.com.au/downloads/all/tuxonice-for-linux-${kernelVersion}-${version}.patch.bz2" }:
-    { name = "tuxonice-${kernelVersion}";
-      patch = stdenv.mkDerivation {
-        name = "tuxonice-${version}-for-${kernelVersion}.patch";
-        src = fetchurl {
-          inherit url sha256;
-        };
-        phases = [ "installPhase" ];
-        installPhase = ''
-          source $stdenv/setup
-          bunzip2 -c $src > $out
-        '';
-      };
-    };
-in
-
 rec {
-
   bridge_stp_helper =
     { name = "bridge-stp-helper";
       patch = ./bridge-stp-helper.patch;