this repo has no description
1{
2 inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
3
4 outputs = {nixpkgs, ...}: let
5 forAllSystems =
6 function:
7 nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed (
8 system: function nixpkgs.legacyPackages.${system}
9 );
10 in {
11 systems = [ "x86_64-linux" ];
12
13
14 packages = forAllSystems (pkgs: {
15 default = pkgs.mkShell {
16 nativeBuildInputs = with pkgs; [
17 babashka
18 clojure
19 leiningen
20 ];
21 };
22 });
23 };
24}