tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
cde: Disable build on aarch64-linux
Samuel Dionne-Riel
7 years ago
ea20a689
e86b1b9f
+2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
package-management
cde
default.nix
+2
pkgs/tools/package-management/cde/default.nix
···
33
license = licenses.gpl3;
34
maintainers = [ maintainers.rlupton20 ];
35
platforms = platforms.linux;
0
0
36
};
37
}
···
33
license = licenses.gpl3;
34
maintainers = [ maintainers.rlupton20 ];
35
platforms = platforms.linux;
36
+
# error: architecture aarch64 is not supported by strace
37
+
badPlatforms = [ "aarch64-linux" ];
38
};
39
}