nix-update/shell.nix
2022-02-08 15:44:08 +01:00

10 lines
119 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShellNoCC {
buildInputs = [
(import ./. { }).passthru.env
];
}