Skip to content

Commit

Permalink
Fix eval time warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishmack committed Jul 6, 2020
1 parent 10055a1 commit 74935bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci.nix
Expand Up @@ -14,10 +14,10 @@
};
compilerNixNames = nixpkgsName: nixpkgs: builtins.mapAttrs (compiler-nix-name: _:
(import ./default.nix { inherit checkMaterialization; }).nixpkgsArgs) ({
ghc865 = {};
# ghc865 = {};
} // nixpkgs.lib.optionalAttrs (nixpkgsName == "R2003") {
ghc883 = {};
ghc8101 = {};
# ghc8101 = {};
});
systems = nixpkgs: nixpkgs.lib.filterAttrs (_: v: builtins.elem v supportedSystems) {
# I wanted to take these from 'lib.systems.examples', but apparently there isn't one for linux!
Expand Down Expand Up @@ -55,7 +55,7 @@ dimension "Nixpkgs version" nixpkgsVersions (nixpkgsName: nixpkgs-pin:
} // pkgs.lib.optionalAttrs (ifdLevel >= 1) {
iserv-proxy = pkgs.ghc-extra-packages."${compiler-nix-name}".iserv-proxy.components.exes.iserv-proxy;
} // pkgs.lib.optionalAttrs (ifdLevel >= 3) {
hello = (pkgs.haskell-nix.hackage-package { name = "hello"; version = "1.0.0.2"; }).components.exes.hello;
hello = (pkgs.haskell-nix.hackage-package { name = "hello"; version = "1.0.0.2"; inherit compiler-nix-name; }).components.exes.hello;
});
}
//
Expand All @@ -81,7 +81,7 @@ dimension "Nixpkgs version" nixpkgsVersions (nixpkgsName: nixpkgs-pin:
remote-iserv = pkgs.ghc-extra-packages."${compiler-nix-name}".remote-iserv.components.exes.remote-iserv;
iserv-proxy = pkgs.ghc-extra-packages."${compiler-nix-name}".iserv-proxy.components.exes.iserv-proxy;
} // pkgs.lib.optionalAttrs (ifdLevel >= 3) {
hello = (pkgs.haskell-nix.hackage-package { name = "hello"; version = "1.0.0.2"; }).components.exes.hello;
hello = (pkgs.haskell-nix.hackage-package { name = "hello"; version = "1.0.0.2"; inherit compiler-nix-name; }).components.exes.hello;
})
)
)
Expand Down
1 change: 1 addition & 0 deletions lib/cabal-licenses.nix
Expand Up @@ -12,6 +12,7 @@ lib: with lib.licenses;
"AGPL-3.0-only" = agpl3;
"AGPL-3.0-or-later" = agpl3Plus;
"Apache-2.0" = asl20;
"GPL-2.0-or-later AND BSD-3-Clause" = [gpl2Plus bsd3];
# Generic
LicenseRef-Apache = "Apache";
LicenseRef-GPL = "GPL";
Expand Down

0 comments on commit 74935bc

Please sign in to comment.