bridge_utils added
svn path=/nixpkgs/trunk/; revision=9750
This commit is contained in:
parent
7fe25a113d
commit
054c33a676
19
pkgs/os-specific/linux/bridge_utils/default.nix
Normal file
19
pkgs/os-specific/linux/bridge_utils/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "bridge-utils-1.2";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = http://mirror/sourceforge/bridge/bridge-utils-1.2.tar.gz;
|
||||
sha256 = "0jg3z51c2c34byg4zi39j9g4b66js5kanjhid77hpa0jdfmryfy9";
|
||||
};
|
||||
|
||||
buildInputs =(with args; [autoconf automake]);
|
||||
|
||||
preConfigure="autoreconf";
|
||||
|
||||
meta = {
|
||||
description = "http://sourceforge.net/projects/bridge/";
|
||||
homepage = [ "http://www.linux-foundation.org/en/Net:Bridge/" "http://sourceforge.net/projects/bridge/" ];
|
||||
license = "GPL";
|
||||
};
|
||||
}
|
@ -2818,6 +2818,10 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
bridge_utils = import ../os-specific/linux/bridge_utils {
|
||||
inherit fetchurl stdenv autoconf automake;
|
||||
};
|
||||
|
||||
alsaUtils = import ../os-specific/linux/alsa/utils {
|
||||
inherit fetchurl stdenv alsaLib ncurses gettext;
|
||||
};
|
||||
@ -2953,7 +2957,7 @@ rec {
|
||||
modules = [];
|
||||
};
|
||||
|
||||
kernel = kernel_2_6_21;
|
||||
kernel = kernel_2_6_23;
|
||||
|
||||
systemKernel = (if (getConfig ["kernel" "version"] "2.6.21") == "2.6.22" then
|
||||
kernel_2_6_22 else if (getConfig ["kernel" "version"] "2.6.21") == "2.6.23" then
|
||||
@ -3112,6 +3116,19 @@ rec {
|
||||
{ name = "paravirt-nvidia";
|
||||
patch = ../os-specific/linux/kernel/2.6.22-paravirt-nvidia.patch;
|
||||
}
|
||||
{ # resume with resume=swap:/dev/xx
|
||||
name = "tux on ice"; # (swsusp2)
|
||||
patch = fetchurl {
|
||||
url = "http://www.tuxonice.net/downloads/all/tuxonice-3.0-rc2-for-2.6.23.1.patch.bz2";
|
||||
sha256 = "ef86267b6f3d7e309221f5173a881afae1dfa57418be5b3963f2380b0633ca1a";
|
||||
};
|
||||
extraConfig = "
|
||||
CONFIG_SUSPEND2=y
|
||||
CONFIG_SUSPEND2_FILE=y
|
||||
CONFIG_SUSPEND2_SWAP=y
|
||||
CONFIG_CRYPTO_LZF=y
|
||||
";
|
||||
}
|
||||
{ name = "fbsplash-0.9.2-r5-2.6.21";
|
||||
patch = fetchurl {
|
||||
url = http://dev.gentoo.org/~dsd/genpatches/trunk/2.6.22/4200_fbsplash-0.9.2-r5.patch;
|
||||
|
Loading…
Reference in New Issue
Block a user