6 lines
91 B
Nix
6 lines
91 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [];
|
|
}
|