summary refs log tree commit diff
path: root/pkgs/top-level/release-small.nix
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-03-13 18:00:52 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-03-14 18:44:42 -0400
commitf79f80dbf267036a96f8eae281c8501482756d03 (patch)
treed2e37a9947ee5b952282025a5f5f5c4bf2090a7f /pkgs/top-level/release-small.nix
parent2d1d83d836e09e50469302101955ea6c58dcd206 (diff)
downloadnixlib-f79f80dbf267036a96f8eae281c8501482756d03.tar
nixlib-f79f80dbf267036a96f8eae281c8501482756d03.tar.gz
nixlib-f79f80dbf267036a96f8eae281c8501482756d03.tar.bz2
nixlib-f79f80dbf267036a96f8eae281c8501482756d03.tar.lz
nixlib-f79f80dbf267036a96f8eae281c8501482756d03.tar.xz
nixlib-f79f80dbf267036a96f8eae281c8501482756d03.tar.zst
nixlib-f79f80dbf267036a96f8eae281c8501482756d03.zip
treewide: get rid of platforms.allBut
Negative reasoning like `allBut` is a bad idea with an open world of
platforms. Concretely, if we add a new, quite different sort of
platform, existing packages with `allBut` will claim they work on it
even though they probably won't.
Diffstat (limited to 'pkgs/top-level/release-small.nix')
-rw-r--r--pkgs/top-level/release-small.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/top-level/release-small.nix b/pkgs/top-level/release-small.nix
index 391d79e47f18..e92ad47e1425 100644
--- a/pkgs/top-level/release-small.nix
+++ b/pkgs/top-level/release-small.nix
@@ -21,7 +21,7 @@ with import ./release-lib.nix { inherit supportedSystems; };
   atlas = linux;
   autoconf = all;
   automake = all;
-  avahi = allBut cygwin;  # Cygwin builds fail
+  avahi = unix; # Cygwin builds fail
   bash = all;
   bashInteractive = all;
   bc = all;
@@ -54,7 +54,7 @@ with import ./release-lib.nix { inherit supportedSystems; };
   gnumake = all;
   gnupatch = all;
   gnupg = linux;
-  gnuplot = allBut cygwin;
+  gnuplot = unix; # Cygwin builds fail
   gnused = all;
   gnutar = all;
   gnutls = linux;
@@ -128,7 +128,7 @@ with import ./release-lib.nix { inherit supportedSystems; };
   pkgconfig = all;
   pmccabe = linux;
   procps = linux;
-  python = allBut cygwin;
+  python = unix; # Cygwin builds fail
   readline = all;
   rlwrap = all;
   rpm = linux;
@@ -138,9 +138,9 @@ with import ./release-lib.nix { inherit supportedSystems; };
   scrot = linux;
   sdparm = linux;
   sharutils = all;
-  sloccount = allBut cygwin;
+  sloccount = unix; # Cygwin builds fail
   smartmontools = all;
-  sqlite = allBut cygwin;
+  sqlite = unix; # Cygwin builds fail
   squid = linux;
   ssmtp = linux;
   stdenv = all;