tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
qboot: init at pre-release
Thomas Strobel
10 years ago
8f2f1dbb
df038c93
+26
2 changed files
expand all
collapse all
unified
split
pkgs
applications
virtualization
qboot
default.nix
top-level
all-packages.nix
+24
pkgs/applications/virtualization/qboot/default.nix
···
1
1
+
{ stdenv, fetchgit }:
2
2
+
3
3
+
stdenv.mkDerivation {
4
4
+
name = "qboot-pre-release";
5
5
+
6
6
+
src = fetchgit {
7
7
+
url = "https://github.com/yangchengwork/qboot";
8
8
+
rev = "b2bdaf4c878ef34f309c8c79613fabd1b9c4bf75";
9
9
+
sha256 = "00f24125733d24713880e430f409d6ded416286d209c9fabb45541311b01cf8d";
10
10
+
};
11
11
+
12
12
+
installPhase = ''
13
13
+
mkdir -p $out
14
14
+
cp bios.bin* $out/.
15
15
+
'';
16
16
+
17
17
+
meta = {
18
18
+
description = "A simple x86 firmware for booting Linux";
19
19
+
homepage = https://github.com/bonzini/qboot;
20
20
+
license = stdenv.lib.licenses.gpl2;
21
21
+
maintainers = with stdenv.lib.maintainers; [ tstrobel ];
22
22
+
platforms = ["x86_64-linux" "i686-linux"];
23
23
+
};
24
24
+
}
+2
pkgs/top-level/all-packages.nix
···
9055
9055
9056
9056
oracleXE = callPackage ../servers/sql/oracle-xe { };
9057
9057
9058
9058
+
qboot = callPackage ../applications/virtualization/qboot { stdenv = stdenv_32bit; };
9059
9059
+
9058
9060
OVMF = callPackage ../applications/virtualization/OVMF { seabios=false; openssl=null; };
9059
9061
OVMF-CSM = callPackage ../applications/virtualization/OVMF { openssl=null; };
9060
9062
#WIP: OVMF-secureBoot = callPackage ../applications/virtualization/OVMF { seabios=false; secureBoot=true; };