2024-06-26 01:07:09 +02:00
|
|
|
# A shell to get tooling for Nixpkgs development
|
|
|
|
#
|
|
|
|
# Note: We intentionally don't use Flakes here,
|
|
|
|
# because every time you change any file and do another `nix develop`,
|
|
|
|
# it would create another copy of the entire ~500MB tree in the store.
|
|
|
|
# See https://github.com/NixOS/nix/pull/6530 for the future
|
|
|
|
{
|
|
|
|
system ? builtins.currentSystem,
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
pinnedNixpkgs = builtins.fromJSON (builtins.readFile ci/pinned-nixpkgs.json);
|
|
|
|
|
|
|
|
nixpkgs = fetchTarball {
|
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/${pinnedNixpkgs.rev}.tar.gz";
|
|
|
|
sha256 = pinnedNixpkgs.sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
inherit system;
|
2024-07-13 16:03:49 +02:00
|
|
|
config = { };
|
|
|
|
overlays = [ ];
|
2024-06-26 01:07:09 +02:00
|
|
|
};
|
|
|
|
in
|
|
|
|
pkgs.mkShellNoCC {
|
2024-07-13 16:04:05 +02:00
|
|
|
packages = with pkgs; [
|
2024-06-26 01:07:09 +02:00
|
|
|
# The default formatter for Nix code
|
2024-07-13 16:04:05 +02:00
|
|
|
# See https://github.com/NixOS/nixfmt
|
|
|
|
nixfmt-rfc-style
|
|
|
|
# Helper to review Nixpkgs PRs
|
|
|
|
# See CONTRIBUTING.md
|
|
|
|
nixpkgs-review
|
2024-06-26 01:07:09 +02:00
|
|
|
];
|
|
|
|
}
|