Skip to content

Commit

Permalink
kmod-blacklist-ubuntu: 9.3 -> 22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Hoeg committed Mar 14, 2017
1 parent 2839b10 commit 0c262a6
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pkgs/os-specific/linux/kmod-blacklist-ubuntu/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{ stdenv, fetchurl, gnugrep, findutils }:

let
version = "3ubuntu1"; # Saucy
in
stdenv.mkDerivation {
version = "22-1.1ubuntu1"; # Zesty

in stdenv.mkDerivation {
name = "kmod-blacklist-${version}";

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

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

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

0 comments on commit 0c262a6

Please sign in to comment.