Skip to content

Commit

Permalink
Revert "kmod-blacklist-ubuntu: 9.3 -> 22.1"
Browse files Browse the repository at this point in the history
This reverts commit 0c262a6.
It broke X tests, though it's not clear why ATM.  Discussion:
#23890 (comment)
  • Loading branch information
vcunat committed Mar 22, 2017
1 parent b2ba188 commit 8c410f4
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions pkgs/os-specific/linux/kmod-blacklist-ubuntu/default.nix
@@ -1,14 +1,13 @@
{ stdenv, fetchurl, gnugrep, findutils }:

let
version = "22-1.1ubuntu1"; # Zesty

in stdenv.mkDerivation {
version = "3ubuntu1"; # Saucy
in
stdenv.mkDerivation {
name = "kmod-blacklist-${version}";

src = fetchurl {
url = "https://launchpad.net/ubuntu/+archive/primary/+files/kmod_${version}.debian.tar.xz";
sha256 = "1k749g707ccb82l4xmrkp53khl71f57cpj9fzd1qyzrz147fjyhi";
url = "https://launchpad.net/ubuntu/+archive/primary/+files/kmod_9-${version}.debian.tar.gz";
sha256 = "0h6h0zw2490iqj9xa2sz4309jyfmcc50jdvkhxa1nw90npxglp67";
};

installPhase = ''
Expand All @@ -28,9 +27,9 @@ in stdenv.mkDerivation {
--replace " xargs " " ${findutils}/bin/xargs "
'';

meta = with stdenv.lib; {
homepage = http://packages.ubuntu.com/source/zesty/kmod;
meta = {
homepage = http://packages.ubuntu.com/source/saucy/kmod;
description = "Linux kernel module blacklists from Ubuntu";
platforms = platforms.linux;
platforms = stdenv.lib.platforms.linux;
};
}

0 comments on commit 8c410f4

Please sign in to comment.