add a todo
This commit is contained in:
parent
8719d3eafa
commit
90f07dfe93
10
flake.nix
10
flake.nix
@ -11,11 +11,17 @@
|
|||||||
flake-utils.lib.eachDefaultSystem (system:
|
flake-utils.lib.eachDefaultSystem (system:
|
||||||
let
|
let
|
||||||
pkgs = import nixpkgs { inherit system; };
|
pkgs = import nixpkgs { inherit system; };
|
||||||
|
devDeps = with pkgs; [ bash hugo zopfli brotli parallel ];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
devShells.default = with pkgs; mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
name = "rules_nixpkgs_shell";
|
name = "rules_nixpkgs_shell";
|
||||||
packages = [ bash hugo zopfli brotli parallel ];
|
packages = devDeps;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# TODO how to run scripts/build as a result of `nix run .`?
|
||||||
|
#packages = flake-utils.lib.mkApp {
|
||||||
|
# name = "build
|
||||||
|
#};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user