8 lines
141 B
Nix
8 lines
141 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
leiningen
|
|
vagrant
|
|
gnuplot
|
|
];
|
|
}
|