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 88c5b8e commit 262859dCopy full SHA for 262859d
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 = {
@@ -66,7 +66,7 @@
66
// optionalAttrs isLinux {
67
folder-size-metrics = pkgs.callPackage ./folder-size-metrics { };
68
}
69
- // optionalAttrs ((isLinux && isx86) || isDarwin) rec {
+ // optionalAttrs (system == "x86_64-linux") rec {
70
mcl = pkgs.callPackage ./mcl {
71
buildDubPackage = inputs'.dlang-nix.legacyPackages.buildDubPackage.override {
72
dCompiler = inputs'.dlang-nix.packages."ldc-binary-1_38_0";
0 commit comments