-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflake.nix
More file actions
30 lines (30 loc) · 895 Bytes
/
flake.nix
File metadata and controls
30 lines (30 loc) · 895 Bytes
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
{
description = "Seabug";
inputs = {
nixpkgs = { url = "github:NixOS/nixpkgs"; };
cardano-node.url = "github:input-output-hk/cardano-node/1.35.1";
flake-utils = { url = "github:numtide/flake-utils"; };
# https://github.com/hercules-ci/arion/pull/153
arion = {
url = "github:hercules-ci/arion/bd3e2fe4e372d0b5f965f25f27c5eb7c1a618c4a";
};
};
outputs = { self, nixpkgs, cardano-node, flake-utils, arion }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in rec {
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
arion.packages.${system}.arion
cardano-node.packages.${system}.cardano-cli
curl
httpie
ipfs
jq
postgresql
shfmt
expect
];
};
});
}