forked from Liqwid-Labs/liqwid-libs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathflake.nix
30 lines (29 loc) · 854 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
{
description = "Liqwid Libs";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
haskellNix.url = "github:input-output-hk/haskell.nix";
iohk-nix.url = "github:input-output-hk/iohk-nix";
nixpkgs.follows = "haskellNix/nixpkgs";
plutarch = {
url = "github:Plutonomicon/plutarch-plutus";
};
ply = {
url = "github:mlabs-haskell/ply?ref=edgr/0.7.0";
};
CHaP = {
url = "github:intersectmbo/cardano-haskell-packages?ref=repo";
flake = false;
};
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "x86_64-darwin" ];
imports = [
inputs.pre-commit-hooks.flakeModule
./nix/pre-commit.nix
./nix/packages.nix
];
};
}