Generic name
All checks were successful
/ check (push) Successful in 5m12s

This commit is contained in:
Daniel Flanagan 2025-01-02 21:46:22 -06:00
parent 40bf5452f3
commit b45ffc7a10

View file

@ -5,9 +5,9 @@
}: let }: let
inherit (pkgs) system; inherit (pkgs) system;
in rec { in rec {
lyrs-dev = pkgs.mkShell { my-package-dev = pkgs.mkShell {
inherit (self.checks.${system}.git-hooks) shellHook; inherit (self.checks.${system}.git-hooks) shellHook;
inputsFrom = [self.packages.${system}.lyrs]; inputsFrom = [self.packages.${system}.my-package];
packages = with pkgs; [ packages = with pkgs; [
convco convco
rustPackages.clippy rustPackages.clippy
@ -18,5 +18,5 @@ in rec {
lldb lldb
]; ];
}; };
default = lyrs-dev; default = my-package-dev;
} }