aboutsummaryrefslogtreecommitdiff
path: root/nix/limine.nix
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-11 19:25:19 +1200
committerArslaan Pathan <[email protected]>2026-06-11 19:25:19 +1200
commit673f2563e48a4e1e37af6985d4d18f56bff741ea (patch)
tree7b3aadf32be6f18de9ddf617605352ea78486323 /nix/limine.nix
parent3b00ff6e47d219276459fdb66e8497b0d3cd5249 (diff)
downloadyerbalinux-673f2563e48a4e1e37af6985d4d18f56bff741ea.tar.xz
yerbalinux-673f2563e48a4e1e37af6985d4d18f56bff741ea.zip
Another clean slate. I cannot continue to fight Nix and try to make it do what it was never meant to do.
Yocto time!
Diffstat (limited to 'nix/limine.nix')
-rw-r--r--nix/limine.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/nix/limine.nix b/nix/limine.nix
deleted file mode 100644
index bc4590e..0000000
--- a/nix/limine.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, fetchgit }:
-
-stdenv.mkDerivation {
- name = "limine-yerba";
- src = fetchgit {
- url = "https://github.com/limine-bootloader/limine.git";
- rev = "refs/heads/v8.x-binary";
- hash = "sha256-Hx+IugsQSOziQrV6Z5wZWfm6ysh08IqsFhnefFsn0LI=";
- deepClone = false;
- };
- buildPhase = ''
- make -j$NIX_BUILD_CORES
- '';
- installPhase = ''
- mkdir -p $out/bin
- cp limine $out/bin
- cp limine-bios.sys $out/
- cp limine-bios-cd.bin $out/
- cp limine-uefi-cd.bin $out/
- cp $src/BOOTX64.EFI $out/
- cp $src/BOOTIA32.EFI $out/
- '';
-}