Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit ce49dba

Browse files
committed
Nix: add shells
1 parent 03c458b commit ce49dba

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

chain/shell.nix

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
let
2+
self = import ../. {};
3+
in (self.nix-tools.shellFor {
4+
name = "cardano-chain";
5+
packages = ps: [ ps.cardano-sl-chain ];
6+
})

db/shell.nix

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
let
2+
self = import ../. {};
3+
in (self.nix-tools.shellFor {
4+
name = "cardano-db";
5+
packages = ps: [ ps.cardano-sl-db ];
6+
})

infra/shell.nix

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
let
2+
self = import ../. {};
3+
in (self.nix-tools.shellFor {
4+
name = "cardano-infra";
5+
packages = ps: [ ps.cardano-sl-infra ];
6+
})

lib/shell.nix

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
let
2+
self = import ../. {};
3+
in (self.nix-tools.shellFor {
4+
name = "cardano-lib";
5+
packages = ps: [ ps.cardano-sl ];
6+
})

0 commit comments

Comments
 (0)