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
inherit (pkgs) system;
in rec {
lyrs-dev = pkgs.mkShell {
my-package-dev = pkgs.mkShell {
inherit (self.checks.${system}.git-hooks) shellHook;
inputsFrom = [self.packages.${system}.lyrs];
inputsFrom = [self.packages.${system}.my-package];
packages = with pkgs; [
convco
rustPackages.clippy
@ -18,5 +18,5 @@ in rec {
lldb
];
};
default = lyrs-dev;
default = my-package-dev;
}