-
Notifications
You must be signed in to change notification settings - Fork 325
/
flake.nix
45 lines (39 loc) · 1.17 KB
/
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
38
39
40
41
42
43
44
45
{
description = "dapptools";
inputs = {
# same as in default.nix
nixpkgs.url = "github:NixOS/nixpkgs/aa576357673d609e618d87db43210e49d4bb1789";
};
nixConfig = {
# required to build hevm
allow-import-from-derivation = true;
extra-substituters = [ "https://dapp.cachix.org" ];
extra-trusted-public-keys = [ "dapp.cachix.org-1:9GJt9Ja8IQwR7YW/aF0QvCa6OmjGmsKoZIist0dG+Rs=" ];
};
outputs = { self, nixpkgs }:
let
supportedSystems = [
"x86_64-darwin"
"x86_64-linux"
];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor = forAllSystems (system: import nixpkgs {
inherit system;
overlays = [ (import ./overlay.nix) ];
});
in
{
packages =
forAllSystems (system:
let pkgs = nixpkgsFor.${system}; in
{
inherit (pkgs) dapp ethsign hevm seth;
} // pkgs.solc-static-versions);
apps =
forAllSystems (system:
nixpkgs.lib.genAttrs [ "dapp" "ethsign" "hevm" "seth" ] (name: {
type = "app";
program = "${self.packages.${system}.${name}}/bin/${name}";
}));
};
}