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.
This commit is contained in:
@@ -63,7 +63,7 @@ stdenv.mkDerivation {
|
||||
homepage = http://www.call-cc.org/;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
||||
platforms = with stdenv.lib.platforms; allBut darwin;
|
||||
platforms = stdenv.lib.platforms.linux; # Maybe other non-darwin Unix
|
||||
description = "A portable compiler for the Scheme programming language";
|
||||
longDescription = ''
|
||||
CHICKEN is a compiler for the Scheme programming language.
|
||||
|
||||
@@ -88,7 +88,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
homepage = http://mono-project.com/;
|
||||
description = "Cross platform, open source .NET development framework";
|
||||
platforms = with stdenv.lib.platforms; allBut [ "aarch64-linux" ];
|
||||
platforms = stdenv.lib.platforms.x86;
|
||||
maintainers = with stdenv.lib.maintainers; [ viric thoughtpolice obadz vrthra ];
|
||||
license = stdenv.lib.licenses.free; # Combination of LGPL/X11/GPL ?
|
||||
};
|
||||
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Binary decision diagram package";
|
||||
license = "as-is";
|
||||
|
||||
platforms = with stdenv.lib.platforms; allBut cygwin;
|
||||
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
|
||||
maintainers = [ stdenv.lib.maintainers.peti ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -15,6 +15,6 @@ stdenv.mkDerivation rec {
|
||||
description = "C/C++ library for numbers, a part of GiNaC";
|
||||
homepage = http://www.ginac.de/CLN/;
|
||||
maintainers = [ ];
|
||||
platforms = with stdenv.lib.platforms; allBut cygwin;
|
||||
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
|
||||
};
|
||||
}
|
||||
|
||||
@@ -69,6 +69,6 @@ stdenv.mkDerivation rec {
|
||||
make[3]: *** [Box.lo] Error 1
|
||||
|
||||
*/
|
||||
platforms = with stdenv.lib.platforms; allBut cygwin;
|
||||
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
|
||||
};
|
||||
}
|
||||
|
||||
@@ -58,6 +58,6 @@ stdenv.mkDerivation rec {
|
||||
make[3]: *** [Box.lo] Error 1
|
||||
|
||||
*/
|
||||
platforms = with stdenv.lib.platforms; allBut cygwin;
|
||||
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
|
||||
};
|
||||
}
|
||||
|
||||
@@ -59,6 +59,6 @@ stdenv.mkDerivation rec {
|
||||
make[3]: *** [Box.lo] Error 1
|
||||
|
||||
*/
|
||||
platforms = with stdenv.lib.platforms; allBut cygwin;
|
||||
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
|
||||
};
|
||||
}
|
||||
|
||||
@@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://rocksdb.org;
|
||||
description = "A library that provides an embeddable, persistent key-value store for fast storage";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.allBut [ "i686-linux" ];
|
||||
platforms = platforms.x86_64 ++ platforms.aarch64;
|
||||
maintainers = with maintainers; [ adev wkennington ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
|
||||
description = "C/C++ client-server indexer based on clang";
|
||||
homepage = https://github.com/andersbakken/rtags;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
platforms = stdenv.lib.platforms.allBut [ "i686-linux" ];
|
||||
platforms = with stdenv.lib.platforms; x86_64 ++ aarch64;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user