summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-06-04 19:07:20 +0100
committerRobert Scott <code@humanleg.org.uk>2022-06-04 19:48:03 +0100
commit3b445eaceacd3924e1604b48f33e49e2df8dbbff (patch)
treed68afe4ded91f9438cd7b4602370434cd8389f1c /pkgs/games
parent3b6bc4b69ca7eec695291af31d8878071e0e084d (diff)
downloadnixpkgs-3b445eaceacd3924e1604b48f33e49e2df8dbbff.tar
nixpkgs-3b445eaceacd3924e1604b48f33e49e2df8dbbff.tar.gz
nixpkgs-3b445eaceacd3924e1604b48f33e49e2df8dbbff.tar.bz2
nixpkgs-3b445eaceacd3924e1604b48f33e49e2df8dbbff.tar.lz
nixpkgs-3b445eaceacd3924e1604b48f33e49e2df8dbbff.tar.xz
nixpkgs-3b445eaceacd3924e1604b48f33e49e2df8dbbff.tar.zst
nixpkgs-3b445eaceacd3924e1604b48f33e49e2df8dbbff.zip
treewide: set sourceProvenance for gradle-built packages
these presumably contain binary jars in their deps
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/mindustry/default.nix4
-rw-r--r--pkgs/games/shattered-pixel-dungeon/default.nix4
2 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/games/mindustry/default.nix b/pkgs/games/mindustry/default.nix
index ff77f08651a..9edc17f0bc0 100644
--- a/pkgs/games/mindustry/default.nix
+++ b/pkgs/games/mindustry/default.nix
@@ -199,6 +199,10 @@ stdenv.mkDerivation rec {
     homepage = "https://mindustrygame.github.io/";
     downloadPage = "https://github.com/Anuken/Mindustry/releases";
     description = "A sandbox tower defense game";
+    sourceProvenance = with sourceTypes; [
+      fromSource
+      binaryBytecode  # deps
+    ];
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ fgaz petabyteboy ];
     platforms = platforms.x86_64;
diff --git a/pkgs/games/shattered-pixel-dungeon/default.nix b/pkgs/games/shattered-pixel-dungeon/default.nix
index d8bf9d5f323..81baf3b664b 100644
--- a/pkgs/games/shattered-pixel-dungeon/default.nix
+++ b/pkgs/games/shattered-pixel-dungeon/default.nix
@@ -80,6 +80,10 @@ in stdenv.mkDerivation rec {
     homepage = "https://shatteredpixel.com/";
     downloadPage = "https://github.com/00-Evan/shattered-pixel-dungeon/releases";
     description = "Traditional roguelike game with pixel-art graphics and simple interface";
+    sourceProvenance = with sourceTypes; [
+      fromSource
+      binaryBytecode  # deps
+    ];
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ fgaz ];
     platforms = platforms.all;