-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathflake.nix
37 lines (34 loc) · 946 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Flake to set up an environment to upload profile_index.csv to Zenodo.
{
inputs = {
dream2nix.url = "github:nix-community/dream2nix";
nixpkgs.follows = "dream2nix/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
systems.url = "github:nix-systems/default";
devenv.url = "github:cachix/devenv";
};
outputs = { self, nixpkgs, devenv, systems, dream2nix, ... } @ inputs:
inputs.flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
system = system;
config.allowUnfree = true;
};
in {
devShells = with pkgs;
{
default = pkgs.mkShell {
packages = [
coreutils
jq
curl
gawk
moreutils
shellcheck
shfmt
];
};
};
}
);
}