dev-templates/clojure/flake.nix
2023-07-13 15:15:22 -07:00

33 lines
945 B
Nix

{
description = "A Nix-flake-based Clojure development environment";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs =
{ self
, nixpkgs
}:
let
javaVersion = 17;
overlays = [
(final: prev: rec {
jdk = prev."jdk${toString javaVersion}";
boot = prev.boot.override { inherit jdk; };
clojure = prev.clojure.override { inherit jdk; };
leiningen = prev.leiningen.override { inherit jdk; };
})
];
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit overlays system; };
});
in {
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [ boot clojure leiningen ];
};
});
};
}