This commit is contained in:
parent
40bf5452f3
commit
b45ffc7a10
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue