Adding tuxonice for 2.6.35

svn path=/nixpkgs/trunk/; revision=26446
This commit is contained in:
Lluís Batlle i Rossell
2011-03-21 15:42:21 +00:00
parent daff9c4bbf
commit 84ca32b293
2 changed files with 24 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
{ fetchurl }:
{ stdenv, fetchurl }:
let
@@ -235,4 +235,20 @@ in
patch = ./guruplug-mach-type.patch;
};
tuxonice_2_6_35 =
{ name = "tuxonice-2.6.35";
patch = stdenv.mkDerivation {
name = "tuxonice-3.2-rc2-for-2.6.35.patch";
src = fetchurl {
url = http://tuxonice.net/files/tuxonice-3.2-rc2-for-2.6.35.patch.bz2;
sha256 = "00jbrqq6p1lyvli835wczc0vqsn0z73jpb2aak3ak0vgnvsxw37q";
};
phases = [ "installPhase" ];
installPhase = ''
source $stdenv/setup
bunzip2 -c $src > $out
'';
};
};
}