tvl-depot/boilerplate/clojure/shell.nix
William Carroll 066b1441b2 Support //boilerplate/clojure
While this is most likely incomplete or even erroneous, I'd like to start
supporting Clojure in this repository.
2020-05-04 12:32:50 +01:00

7 lines
102 B
Nix

let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
buildInputs = with pkgs; [
leiningen
];
}