Skip to content

Commit 5a45cb1

Browse files
committed
[DDW-745] Clean-up
1 parent 173c22c commit 5a45cb1

File tree

8 files changed

+24
-16
lines changed

8 files changed

+24
-16
lines changed

installers/daedalus-installer.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{ mkDerivation, aeson, base, bytestring, containers, directory
22
, filepath, foldl, github, Glob, hspec, lens-aeson, managed
33
, megaparsec, microlens, network-uri, nsis, optional-args
4-
, optparse-applicative, optparse-generic, split, stdenv
4+
, optparse-applicative, optparse-generic, split, lib
55
, system-filepath, temporary, text, turtle, universum, raw-strings-qq
6-
, unordered-containers, wreq, yaml, zip-archive, lib
6+
, unordered-containers, wreq, yaml, zip-archive
77
}:
88
mkDerivation {
99
pname = "daedalus-installer";

installers/dhall-haskell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
, memory, mtl, optparse-generic, parsers, prettyprinter
77
, prettyprinter-ansi-terminal, repline, scientific, stdenv, tasty, lib
88
, tasty-hunit, text, text-format, transformers, trifecta, unordered-containers
9-
, vector, lib
9+
, vector
1010
}:
1111
mkDerivation {
1212
pname = "dhall";

installers/dhall-json.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{ mkDerivation, aeson, aeson-pretty, base, bytestring, dhall
2-
, fetchgit, optparse-generic, stdenv, text, trifecta
3-
, unordered-containers, yaml, lib
2+
, fetchgit, optparse-generic, stdenv, text, trifecta, lib
3+
, unordered-containers, yaml
44
}:
55
mkDerivation {
66
pname = "dhall-json";

installers/nix/electron.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let
1212
homepage = https://github.com/electron/electron;
1313
license = licenses.mit;
1414
maintainers = with maintainers; [ travisbhartwell manveru ];
15-
platforms = [ "x86_64-darwin" "aarch64-darwin" "x86_64-linux" "i686-linux" ];
15+
platforms = [ "x86_64-darwin" "aarch64-darwin" "x86_64-linux" "i686-linux" "armv7l-linux" "aarch64-linux" ];
1616
};
1717

1818
linux = {

installers/overlays/dhall-json.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{ mkDerivation, aeson, aeson-pretty, ansi-terminal, base
22
, bytestring, containers, dhall, exceptions, filepath, libyaml
33
, optparse-applicative, prettyprinter, prettyprinter-ansi-terminal
4-
, scientific, stdenv, tasty, tasty-hunit, text
5-
, unordered-containers, vector, yaml, lib
4+
, scientific, stdenv, tasty, tasty-hunit, text, lib
5+
, unordered-containers, vector, yaml
66
}:
77
mkDerivation {
88
pname = "dhall-json";

installers/overlays/dhall.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
, spoon, stdenv, tasty, tasty-expected-failure, tasty-hunit
1111
, tasty-quickcheck, template-haskell, text, th-lift-instances
1212
, transformers, transformers-compat, turtle, unordered-containers
13-
, uri-encode, vector, lib
13+
, uri-encode, vector
1414
}:
1515
mkDerivation {
1616
pname = "dhall";

installers/overlays/nsis.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
{ mkDerivation, base, directory, fetchFromGitHub, process, lib, transformers, uniplate }:
1+
{ mkDerivation, base, directory, fetchFromGitHub, process, stdenv, lib
2+
, transformers, uniplate
3+
}:
24
mkDerivation {
35
pname = "nsis";
46
version = "0.3.2";

release.nix

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,17 @@ in {
6060
inherit (sources) iohk-nix cardano-wallet cardano-shell;
6161
};
6262
} // (builtins.listToAttrs (map (x: { name = x; value = makeJobs x; }) clusters))
63-
// (mapOverArches {
64-
daedalus-installer = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
65-
yaml2json = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
63+
// (mapOverArches (let
64+
allArchesNoWindows = [
65+
"x86_64-linux" "x86_64-darwin"
66+
# "aarch64-darwin" # TODO: re-enable when we have `aarch64-darwin` in Hydra
67+
];
68+
allArches = allArchesNoWindows ++ [ "x86_64-windows" ];
69+
in {
70+
daedalus-installer = allArchesNoWindows;
71+
yaml2json = allArchesNoWindows;
6672
bridgeTable = {
67-
cardano = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" "x86_64-windows" ];
73+
cardano = allArches;
6874
};
69-
cardano-node = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" "x86_64-windows" ];
70-
})
75+
cardano-node = allArches;
76+
}))

0 commit comments

Comments
 (0)