Remove explicit gcc12Stdenv in flake

This commit is contained in:
outfoxxed 2023-06-04 14:36:47 -07:00
parent d892bb6db7
commit 7cd6505403
No known key found for this signature in database
GPG key ID: 4C88A185FB89301E

View file

@ -8,7 +8,7 @@
hyprlandSystems = fn: nixpkgs.lib.genAttrs (builtins.attrNames hyprland.packages) (system: fn system nixpkgs.legacyPackages.${system}); hyprlandSystems = fn: nixpkgs.lib.genAttrs (builtins.attrNames hyprland.packages) (system: fn system nixpkgs.legacyPackages.${system});
in { in {
packages = hyprlandSystems (system: pkgs: rec { packages = hyprlandSystems (system: pkgs: rec {
hy3 = pkgs.gcc12Stdenv.mkDerivation { hy3 = pkgs.stdenv.mkDerivation {
pname = "hy3"; pname = "hy3";
version = "0.1"; version = "0.1";
src = ./.; src = ./.;
@ -35,7 +35,7 @@
}); });
devShells = hyprlandSystems (system: pkgs: { devShells = hyprlandSystems (system: pkgs: {
default = pkgs.mkShell.override { stdenv = pkgs.gcc12Stdenv; } { default = pkgs.mkShell {
name = "hy3"; name = "hy3";
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [