nix-module-wrapper-manager-fds/shell.nix

25 lines
347 B
Nix
Raw Normal View History

let
sources = import ./npins;
in
2024-07-31 13:51:40 +00:00
{
pkgs ? import sources.nixos-unstable { },
}:
let
docs = import ./docs { inherit pkgs; };
2024-11-12 10:08:31 +00:00
website = docs.website { };
in
pkgs.mkShell {
2024-11-12 10:08:31 +00:00
inputsFrom = [ website ];
2024-07-19 05:50:41 +00:00
packages = with pkgs; [
npins
treefmt
2024-07-31 13:51:40 +00:00
nixfmt-rfc-style
# For easy validation of the test suite.
yajsv
jq
];
}