heyarne.rect-packing/shell.nix

12 lines
194 B
Nix

{ pkgs ? import <nixpkgs> { }, }:
let
lib = pkgs.lib;
in pkgs.mkShell rec {
name = "quil-env";
buildInputs = with pkgs; [
clojure
nodejs-slim-16_x
nodePackages.npm
];
}