blob: 6c255a2c2d840bc8c84de1845ea3e6ec218a2e61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
pkgs ? import <nixpkgs> {
config = { };
overlays = [ ];
},
}:
pkgs.mkShellNoCC {
packages = builtins.attrValues {
inherit (pkgs)
deadnix
nixfmt-rfc-style
npins
statix
;
};
}
|