Skip to content

Commit

Permalink
ci: revert "ci: remove deps to gcc"
Browse files Browse the repository at this point in the history
Reverts commit d16d129.
This did not work since many depend on stdenv.

References:

- NixOS/nixpkgs#132617
- NixOS/nixpkgs#116274
  • Loading branch information
m15a committed Mar 23, 2024
1 parent d16d129 commit c54fad6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
};

mkCICheckShell = { gnumake, fennel, faith, fnldoc }:
pkgs.mkShellNoCC {
pkgs.mkShell {
buildInputs = [ gnumake fennel fennel.lua faith fnldoc ];
};

Expand All @@ -45,7 +45,7 @@
luaVariant = [ "lua5_1" "lua5_2" "lua5_3" "lua5_4" "luajit" ];
}));
in
rec {
{
devShells = {
inherit (ci-check-shells)
ci-check-shell-fennel-unstable-lua5_1
Expand All @@ -58,7 +58,7 @@
let
fennel = pkgs.fennel-unstable-luajit;
in
pkgs.mkShellNoCC {
pkgs.mkShell {
buildInputs = [
pkgs.gnumake
fennel
Expand Down

0 comments on commit c54fad6

Please sign in to comment.