nix-eval-jobs/shell.nix
adisbladis a0bd67f9cb Use nix as the argument name for nix in default.nix
And pass in `nix = nixUnstable` from the development shell.
2022-01-08 09:10:57 +13:00

34 lines
705 B
Nix

{ pkgs ? (
let
inherit (builtins) fromJSON readFile;
flakeLock = fromJSON (readFile ./flake.lock);
locked = flakeLock.nodes.nixpkgs.locked;
nixpkgs = assert locked.type == "github"; builtins.fetchTarball {
url = "https://github.com/${locked.owner}/${locked.repo}/archive/${locked.rev}.tar.gz";
sha256 = locked.narHash;
};
in
import nixpkgs { }
)
, srcDir ? null
}:
(pkgs.callPackage ./default.nix {
inherit srcDir;
nix = pkgs.nixUnstable;
}).overrideAttrs (old: {
nativeBuildInputs = old.nativeBuildInputs ++ [
pkgs.editorconfig-checker
pkgs.nixpkgs-fmt
(pkgs.python3.withPackages (ps: [
ps.pytest
]))
];
})