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:
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "GNU barcode generator";
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
platforms = with platforms; allBut darwin;
|
||||
platforms = platforms.linux; # Maybe other non-darwin Unix
|
||||
downloadPage = "http://ftp.gnu.org/gnu/barcode/";
|
||||
updateWalker = true;
|
||||
homepage = http://ftp.gnu.org/gnu/barcode/;
|
||||
|
||||
Reference in New Issue
Block a user