summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-06-10 21:12:22 +0100
committerRobert Scott <code@humanleg.org.uk>2022-06-10 21:12:22 +0100
commit9fc90429c3bdc4c1d800777b0ba61c325dfb8e0f (patch)
tree5dce1dfd2cd7bd6e690f6a86b35f9b6a98afd03a /pkgs/games
parentc1d92e633dfe14a28eb48fa8a120e0b7a81f8c80 (diff)
downloadnixpkgs-9fc90429c3bdc4c1d800777b0ba61c325dfb8e0f.tar
nixpkgs-9fc90429c3bdc4c1d800777b0ba61c325dfb8e0f.tar.gz
nixpkgs-9fc90429c3bdc4c1d800777b0ba61c325dfb8e0f.tar.bz2
nixpkgs-9fc90429c3bdc4c1d800777b0ba61c325dfb8e0f.tar.lz
nixpkgs-9fc90429c3bdc4c1d800777b0ba61c325dfb8e0f.tar.xz
nixpkgs-9fc90429c3bdc4c1d800777b0ba61c325dfb8e0f.tar.zst
nixpkgs-9fc90429c3bdc4c1d800777b0ba61c325dfb8e0f.zip
treewide/games,misc: add sourceType binaryNativeCode for many packages
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/factorio/default.nix1
-rw-r--r--pkgs/games/minecraft/default.nix1
-rw-r--r--pkgs/games/runelite/default.nix5
-rw-r--r--pkgs/games/runescape-launcher/default.nix1
-rw-r--r--pkgs/games/unvanquished/default.nix4
5 files changed, 11 insertions, 1 deletions
diff --git a/pkgs/games/factorio/default.nix b/pkgs/games/factorio/default.nix
index 4cf335a6137..4ca92961baf 100644
--- a/pkgs/games/factorio/default.nix
+++ b/pkgs/games/factorio/default.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" ];
diff --git a/pkgs/games/minecraft/default.nix b/pkgs/games/minecraft/default.nix
index dc4cd9087fc..a8e883acae3 100644
--- a/pkgs/games/minecraft/default.nix
+++ b/pkgs/games/minecraft/default.nix
@@ -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" ];
   };
diff --git a/pkgs/games/runelite/default.nix b/pkgs/games/runelite/default.nix
index 0cb72f6d23c..a3c686eee9f 100644
--- a/pkgs/games/runelite/default.nix
+++ b/pkgs/games/runelite/default.nix
@@ -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" ];
diff --git a/pkgs/games/runescape-launcher/default.nix b/pkgs/games/runescape-launcher/default.nix
index 3208aa3b461..e671e5589b8 100644
--- a/pkgs/games/runescape-launcher/default.nix
+++ b/pkgs/games/runescape-launcher/default.nix
@@ -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" ];
diff --git a/pkgs/games/unvanquished/default.nix b/pkgs/games/unvanquished/default.nix
index 574c639ad12..ca6af48bbb3 100644
--- a/pkgs/games/unvanquished/default.nix
+++ b/pkgs/games/unvanquished/default.nix
@@ -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" ];
   };