6 lines
107 B
Nix
6 lines
107 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = [
|
|
pkgs.leiningen
|
|
];
|
|
}
|