mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-08-05 20:37:41 +00:00
9 lines
141 B
Nix
9 lines
141 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
leiningen
|
|
vagrant
|
|
gnuplot
|
|
];
|
|
}
|