summary refs log tree commit diff
path: root/pkgs/top-level/release-lib.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2020-06-04 16:05:44 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2020-06-04 16:05:44 -0500
commit16447810464b958929fc414e59d3f45f073ea7cf (patch)
treef0cef9b6214760babdf584dd85bbe74aa892a9ec /pkgs/top-level/release-lib.nix
parent4f9053c6050e958205be41a6cd3a71a279ef5fa5 (diff)
downloadnixpkgs-16447810464b958929fc414e59d3f45f073ea7cf.tar
nixpkgs-16447810464b958929fc414e59d3f45f073ea7cf.tar.gz
nixpkgs-16447810464b958929fc414e59d3f45f073ea7cf.tar.bz2
nixpkgs-16447810464b958929fc414e59d3f45f073ea7cf.tar.lz
nixpkgs-16447810464b958929fc414e59d3f45f073ea7cf.tar.xz
nixpkgs-16447810464b958929fc414e59d3f45f073ea7cf.tar.zst
nixpkgs-16447810464b958929fc414e59d3f45f073ea7cf.zip
release-lib.nix: remove innacurate platform groups
Removes three platform groups which imply that only linux support:

- x11Supported
- gtkSupported
- ghcSupported

replace with just linux
Diffstat (limited to 'pkgs/top-level/release-lib.nix')
-rw-r--r--pkgs/top-level/release-lib.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/top-level/release-lib.nix b/pkgs/top-level/release-lib.nix
index 7e7cac95b9c..9dff0503d23 100644
--- a/pkgs/top-level/release-lib.nix
+++ b/pkgs/top-level/release-lib.nix
@@ -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;
-
 }