heyarne.rect-packing/shell.nix
2022-03-06 16:15:31 +01:00

11 lines
164 B
Nix

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