4 lines
92 B
Nix
4 lines
92 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [ curl morph ];
|
|
} |