aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-10 19:44:17 +1200
committerArslaan Pathan <[email protected]>2026-06-10 19:44:17 +1200
commit5e2fe0cdbe0da7e1082d273a0295fdad44614a48 (patch)
treefa7161672bb6880a5e37b51625dc7eba74c41012 /flake.nix
parent068e16881ac47040e31b65d1ba5d4ed64067166d (diff)
downloadyerbalinux-5e2fe0cdbe0da7e1082d273a0295fdad44614a48.tar.xz
yerbalinux-5e2fe0cdbe0da7e1082d273a0295fdad44614a48.zip
Tcc is not working. too bad, NO TCC
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/flake.nix b/flake.nix
index 4b69ea3..a9ca70d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -18,16 +18,12 @@
busybox = pkgs.callPackage ./nix/busybox.nix {
inherit (pkgs) pkgsStatic;
};
- tcc = pkgs.callPackage ./nix/tcc.nix {
- inherit (pkgsMusl) musl;
- inherit (pkgs) linuxHeaders;
- };
limine = pkgs.callPackage ./nix/limine.nix {};
initramfs = pkgs.callPackage ./nix/initramfs.nix {
inherit (self.packages.${system}) kernel busybox;
};
rootfs = pkgs.callPackage ./nix/rootfs.nix {
- inherit (self.packages.${system}) busybox tcc;
+ inherit (self.packages.${system}) busybox;
inherit (pkgsMusl) musl;
};
iso = pkgs.callPackage ./nix/iso.nix {