forked from cardano-foundation/cardano-wallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.nix
35 lines (34 loc) · 1.21 KB
/
default.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
############################################################################
#
# Cardano Wallet Nix build - legacy flake compatibility layer.
# See flake.nix for native flake instructions.
#
# Derivation attributes of this file can be build with "nix-build -A ..."
# Discover attribute names using tab-completion in your shell.
#
# Interesting top-level attributes:
#
# - cardano-wallet - cli executable
# - tests - attrset of test-suite executables
# - cardano-wallet-core.unit
# - cardano-wallet.integration
# - etc (layout is PACKAGE.COMPONENT)
# - checks - attrset of test-suite results
# - cardano-wallet-core.unit
# - cardano-wallet.integration
# - etc
# - benchmarks - attret of benchmark executables
# - cardano-wallet-core.db
# - cardano-wallet.latency
# - etc
# - dockerImage - tarball of the docker image
#
# Other documentation:
# https://input-output-hk.github.io/cardano-wallet/dev/Building#nix-build
#
############################################################################
{ ... }@args:
with (import ./nix/flake-compat.nix args);
defaultNix // defaultNix.packages.${builtins.currentSystem} // {
private.project = defaultNix.legacyPackages.${builtins.currentSystem};
}