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

Commit ff54336

Browse files
authored
Merge branch 'master' into ksaric/GH-208
2 parents 99e0ead + bcd57f9 commit ff54336

15 files changed

+86
-102
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ configuration/server/
1212

1313
# Config files
1414
.ghci
15+
cabal.project.local
1516

1617
# Our custom build script (util-scripts/build.sh)
1718
b
@@ -115,4 +116,4 @@ result*
115116
cabal.config
116117

117118
# avoid issues when running /nix/regenerate.sh
118-
.stack-to-nix.cache
119+
.stack-to-nix.cache

cabal.project

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,29 @@ packages:
44
source-repository-package
55
type: git
66
location: https://github.com/input-output-hk/iohk-monitoring-framework
7-
tag: cbe7ab32354f3838dc8c95c64109904c8f503347
7+
tag: e2dc8b2160bb2ccd1ef9817a6498cda06ad36580
88
subdir: contra-tracer
99

1010
source-repository-package
1111
type: git
1212
location: https://github.com/input-output-hk/iohk-monitoring-framework
13-
tag: cbe7ab32354f3838dc8c95c64109904c8f503347
13+
tag: e2dc8b2160bb2ccd1ef9817a6498cda06ad36580
1414
subdir: iohk-monitoring
1515

1616
source-repository-package
1717
type: git
1818
location: https://github.com/input-output-hk/cardano-sl-x509
19-
tag: e8bfc1294e088f90e5ae0b4aedbc82ee46ac5ee4
19+
tag: ec96c64c665b741c17b4e38f611315bae9b0b054
2020

2121
source-repository-package
2222
type: git
2323
location: https://github.com/input-output-hk/cardano-prelude
24-
tag: 2256fd727c5f92e6218afdcf8cddf6e01c4a9dcd
24+
tag: fda38e60007a019c0c8569e8a0fc08f2102c92cc
2525

26+
source-repository-package
27+
type: git
28+
location: http://github.com/well-typed/canonical-json
29+
tag: ddfe3593b80b5ceb88842bb7a6f2268df75d2c2f
30+
31+
constraints:
32+
libsystemd-journal >= 1.4.4

default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ let
5555
in defaultNix // {
5656
# ... and add additional packages we want to build on CI:
5757

58-
env = defaultNix.nix-tools.shellFor {
58+
shell = defaultNix.nix-tools.shellFor {
5959
inherit withHoogle;
6060
# env will provide the dependencies of cardano-shell
6161
packages = ps: with ps; [ cardano-shell ];
6262
# This adds git to the shell, which is used by stack.
63-
buildInputs = with pkgs; [ git stack commonLib.stack-hpc-coveralls ];
63+
buildInputs = with pkgs; [ git stack commonLib.stack-hpc-coveralls pkgconfig systemd ];
6464
};
6565

6666
runCoveralls = pkgs.stdenv.mkDerivation {

nix/.stack.nix/canonical-json.nix

Lines changed: 17 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/.stack.nix/cardano-prelude-test.nix

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/.stack.nix/cardano-prelude.nix

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/.stack.nix/cardano-sl-x509.nix

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/.stack.nix/contra-tracer.nix

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/.stack.nix/default.nix

Lines changed: 5 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/.stack.nix/iohk-monitoring.nix

Lines changed: 26 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/iohk-nix-src.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"url": "https://github.com/input-output-hk/iohk-nix",
3-
"rev": "8a7faeddf108515a8d64cb3dcf552bbd432865a3",
4-
"date": "2019-05-31T03:32:45+00:00",
5-
"sha256": "0cjsnzfnyhbvjvw9lk2z6bznjnpq452d629319km29yvqqg2n9yk",
3+
"rev": "eec83e9bba05093c94004a001caebae252c0c83b",
4+
"date": "2019-06-26T17:23:10+00:00",
5+
"sha256": "00b11qmgr57pm6gg7a8m6fzjj6m5wmh8hnwg16jnqsmf52882y2j",
66
"fetchSubmodules": false
77
}

release.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ commonLib.nix-tools.release-nix {
88
# are interested in building on CI via nix-tools.
99
packages = [ "cardano-shell" ];
1010

11+
# non nix-tools jobs from default.nix that we want to build for
12+
# all supported systems.
13+
builds-on-supported-systems = [ "shell" ];
14+
1115
# The set of jobs we consider crutial for each CI run.
1216
# if a single one of these fails, the build will be marked
1317
# as failed.

shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
let
22
localPkgs = import ./. { };
3-
mainShell = localPkgs.env;
3+
mainShell = localPkgs.shell;
44
in mainShell // {
55
inherit (localPkgs) runCoveralls;
66
}

stack-shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
(import ./. { withHoogle = false; }).env
1+
(import ./. { withHoogle = false; }).shell

0 commit comments

Comments
 (0)