12 lines
182 B
Nix
12 lines
182 B
Nix
|
{ pkgs ? (import <nixpkgs> {
|
||
|
config.allowUnfree = true;
|
||
|
}),
|
||
|
}:
|
||
|
pkgs.mkShell {
|
||
|
pure = true;
|
||
|
packages = with pkgs; [
|
||
|
# Choose the build tools that you need
|
||
|
act
|
||
|
];
|
||
|
}
|