aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/top-level/release-lib.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/top-level/release-lib.nix')
-rw-r--r--nixpkgs/pkgs/top-level/release-lib.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/nixpkgs/pkgs/top-level/release-lib.nix b/nixpkgs/pkgs/top-level/release-lib.nix
index 7e7cac95b9c..1e33c7b0585 100644
--- a/nixpkgs/pkgs/top-level/release-lib.nix
+++ b/nixpkgs/pkgs/top-level/release-lib.nix
@@ -145,7 +145,7 @@ rec {
let res = builtins.tryEval (
if isDerivation value then
value.meta.hydraPlatforms
- or (supportedMatches (value.meta.platforms or [ "x86_64-linux" ]))
+ or (value.meta.platforms or [ "x86_64-linux" ])
else if value.recurseForDerivations or false || value.recurseForRelease or false then
packagePlatforms value
else
@@ -157,9 +157,4 @@ rec {
/* Common platform groups on which to test packages. */
inherit (platforms) unix linux darwin cygwin all mesaPlatforms;
- /* Platform groups for specific kinds of applications. */
- x11Supported = linux;
- gtkSupported = linux;
- ghcSupported = linux;
-
}