Merge pull request #184598 from wegank/treewide-fix-platforms

This commit is contained in:
Sandro 2022-08-02 15:57:56 +02:00 committed by GitHub
commit e76aa82431
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 12 additions and 12 deletions

View file

@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
homepage = "http://shibatch.sourceforge.net/"; homepage = "http://shibatch.sourceforge.net/";
license = licenses.gpl2; license = licenses.gpl2;
maintainers = with maintainers; [ leenaars]; maintainers = with maintainers; [ leenaars];
platforms = with platforms; [ linux ] ; platforms = platforms.linux;
}; };
} }

View file

@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
homepage = "https://code-industry.net/free-pdf-editor/"; homepage = "https://code-industry.net/free-pdf-editor/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfreeRedistributable; license = licenses.unfreeRedistributable;
platforms = with platforms; [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ cmcdragonkai ]; maintainers = with maintainers; [ cmcdragonkai ];
}; };
} }

View file

@ -39,6 +39,6 @@ stdenv.mkDerivation rec {
homepage = "https://code-industry.net/free-pdf-editor/"; homepage = "https://code-industry.net/free-pdf-editor/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfreeRedistributable; license = licenses.unfreeRedistributable;
platforms = with platforms; [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
}; };
} }

View file

@ -41,6 +41,6 @@ mkDerivation rec {
homepage = "https://www.welle.io/"; homepage = "https://www.welle.io/";
maintainers = with maintainers; [ ck3d markuskowa ]; maintainers = with maintainers; [ ck3d markuskowa ];
license = licenses.gpl2Only; license = licenses.gpl2Only;
platforms = with platforms; [ "x86_64-linux" "i686-linux" ] ++ darwin; platforms = [ "x86_64-linux" "i686-linux" ] ++ platforms.darwin;
}; };
} }

View file

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
description = "St. Petersburg genome assembler: assembly toolkit containing various assembly pipelines"; description = "St. Petersburg genome assembler: assembly toolkit containing various assembly pipelines";
license = licenses.gpl2Only; license = licenses.gpl2Only;
homepage = "http://cab.spbu.ru/software/spades/"; homepage = "http://cab.spbu.ru/software/spades/";
platforms = with platforms; [ "x86_64-linux" "x86_64-darwin"]; platforms = [ "x86_64-linux" "x86_64-darwin" ];
maintainers = [ maintainers.bzizou ]; maintainers = [ maintainers.bzizou ];
}; };
} }

View file

@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
''; '';
homepage = "https://upc.lbl.gov/"; homepage = "https://upc.lbl.gov/";
license = licenses.mit; license = licenses.mit;
platforms = with platforms; [ linux ]; platforms = platforms.linux;
maintainers = with maintainers; [ zimbatm ]; maintainers = with maintainers; [ zimbatm ];
}; };
} }

View file

@ -36,7 +36,7 @@ stdenv.mkDerivation {
homepage = "https://github.com/tomhrr/dale"; homepage = "https://github.com/tomhrr/dale";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ amiloradovsky ]; maintainers = with maintainers; [ amiloradovsky ];
platforms = with platforms; [ "i686-linux" "x86_64-linux" ]; platforms = [ "i686-linux" "x86_64-linux" ];
# failed on Darwin: linker couldn't find the FFI lib # failed on Darwin: linker couldn't find the FFI lib
# failed on AArch64: because LLVM 3.5 is failed there # failed on AArch64: because LLVM 3.5 is failed there
}; };

View file

@ -46,6 +46,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.gnu.org/software/gnat"; homepage = "https://www.gnu.org/software/gnat";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ ethindp ]; maintainers = with maintainers; [ ethindp ];
platforms = with platforms; [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
}; };
} }

View file

@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
description = "Library to report hypervisor information from inside a VM"; description = "Library to report hypervisor information from inside a VM";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.womfoo ]; maintainers = [ maintainers.womfoo ];
platforms = with platforms; [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; # fails on aarch64 platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; # fails on aarch64
}; };
} }

View file

@ -70,6 +70,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2; license = licenses.gpl2;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
# TODO: Add OS X # TODO: Add OS X
platforms = with platforms; [ "i686-linux" "x86_64-linux" ]; platforms = [ "i686-linux" "x86_64-linux" ];
}; };
} }

View file

@ -71,6 +71,6 @@ stdenv.mkDerivation rec {
homepage = "https://te4.org/"; homepage = "https://te4.org/";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ]; maintainers = with maintainers; [ peterhoeg ];
platforms = with platforms; [ "i686-linux" "x86_64-linux" ]; platforms = [ "i686-linux" "x86_64-linux" ];
}; };
} }

View file

@ -26,6 +26,6 @@ stdenv.mkDerivation {
license = with licenses; [ asl20 cc0 openssl ]; license = with licenses; [ asl20 cc0 openssl ];
maintainers = with maintainers; [ kirelagin ]; maintainers = with maintainers; [ kirelagin ];
# "This code requires at least SSE2." # "This code requires at least SSE2."
platforms = with platforms; [ "x86_64-linux" "i686-linux" ] ++ darwin; platforms = [ "x86_64-linux" "i686-linux" ] ++ platforms.darwin;
}; };
} }