We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92040c4 commit a26a713Copy full SHA for a26a713
packages/default.nix
@@ -9,7 +9,7 @@
9
let
10
inherit (lib) optionalAttrs versionAtLeast;
11
inherit (pkgs) system;
12
- inherit (pkgs.hostPlatform) isLinux isDarwin isx86;
+ inherit (pkgs.hostPlatform) isLinux;
13
in
14
rec {
15
legacyPackages = {
@@ -65,7 +65,7 @@
65
// optionalAttrs isLinux {
66
folder-size-metrics = pkgs.callPackage ./folder-size-metrics { };
67
}
68
- // optionalAttrs ((isLinux && isx86) || isDarwin) rec {
+ // optionalAttrs (system == "x86_64-linux") rec {
69
mcl = pkgs.callPackage ./mcl {
70
buildDubPackage = inputs'.dlang-nix.legacyPackages.buildDubPackage.override {
71
dCompiler = inputs'.dlang-nix.packages."ldc-binary-1_38_0";
0 commit comments