Merge pull request #177212 from risicle/ris-native-source-provenance-games-misc

treewide/games,misc: add `sourceType` `binaryNativeCode` for many packages
main
Robert Scott 2 years ago committed by GitHub
commit 3cd98829ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      pkgs/games/factorio/default.nix
  2. 1
      pkgs/games/minecraft/default.nix
  3. 5
      pkgs/games/runelite/default.nix
  4. 1
      pkgs/games/runescape-launcher/default.nix
  5. 4
      pkgs/games/unvanquished/default.nix
  6. 1
      pkgs/misc/drivers/epkowa/default.nix
  7. 1
      pkgs/misc/drivers/gutenprint/bin.nix
  8. 1
      pkgs/misc/drivers/utsushi/networkscan.nix

@ -166,6 +166,7 @@ let
version 1.0 in mid 2020.
'';
homepage = "https://www.factorio.com/";
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ Baughn elitak erictapen priegger lukegb ];
platforms = [ "x86_64-linux" ];

@ -149,6 +149,7 @@ stdenv.mkDerivation rec {
description = "Official launcher for Minecraft, a sandbox-building game";
homepage = "https://minecraft.net";
maintainers = with maintainers; [ cpages ryantm infinisil ];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
};

@ -58,7 +58,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Open source Old School RuneScape client";
homepage = "https://runelite.net/";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
sourceProvenance = with sourceTypes; [
binaryBytecode
binaryNativeCode
];
license = licenses.bsd2;
maintainers = with maintainers; [ kmeakin ];
platforms = [ "x86_64-linux" ];

@ -77,6 +77,7 @@ let
meta = with lib; {
description = "Launcher for RuneScape 3, the current main RuneScape";
homepage = "https://www.runescape.com/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ grburst ];
platforms = [ "x86_64-linux" ];

@ -225,6 +225,10 @@ in stdenv.mkDerivation rec {
mit gpl3Plus lib.licenses.zlib bsd3 # engine
cc-by-sa-25 cc-by-sa-30 cc-by-30 cc-by-sa-40 cc0 # assets
];
sourceProvenance = with lib.sourceTypes; [
fromSource
binaryNativeCode # unvanquished-binary-deps
];
maintainers = with lib.maintainers; [ afontain ];
platforms = [ "x86_64-linux" ];
};

@ -18,6 +18,7 @@
}:
let common_meta = {
homepage = "http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX";
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = with lib.licenses; epson;
platforms = with lib.platforms; linux;
};

@ -63,6 +63,7 @@ stdenv.mkDerivation {
'';
meta = {
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
description = "Some additional CUPS drivers including Canon drivers";
platforms = [ "x86_64-linux" ];
};

@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://support.epson.net/linux/en/imagescanv3.php";
description = "Network scan plugin for ImageScan v3";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ abbradar ];
platforms = [ "x86_64-linux" ];

Loading…
Cancel
Save