mirror of
https://git.deuxfleurs.fr/Deuxfleurs/garage.git
synced 2024-11-21 23:51:00 +00:00
8 lines
128 B
Nix
8 lines
128 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
leiningen
|
|
vagrant
|
|
gnuplot
|
|
];
|
|
}
|