blob: d25168757328721ef47dbb30dd9c0c976e8b2cf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default";
};
outputs =
{ nixpkgs, systems, ... }:
let
eachSystem =
f: nixpkgs.lib.genAttrs (import systems) (system: f (import nixpkgs { inherit system; }));
in
{
devShells = eachSystem (pkgs: {
default = pkgs.mkShell {
buildInputs = with pkgs; [
zprint
clj-kondo
];
};
});
};
}
|