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