python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / frogatto / data.nix
blob00e43582f6e1fe8397c7641aad171277807667a7
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "frogatto-data";
5   version = "unstable-2022-04-13";
7   src = fetchFromGitHub {
8     owner = "frogatto";
9     repo = "frogatto";
10     rev = "655493961c4ad57ba9cccdc24d23a2ded294b5f2";
11     sha256 = "0irn7p61cs8nm7dxsx84b2c3wryf2h12k2kclywdhy6xmh53w8k1";
12   };
14   installPhase = ''
15     mkdir -p $out/share/frogatto/modules
16     cp -ar . $out/share/frogatto/modules/frogatto
17   '';
19   meta = with lib; {
20     homepage = "https://github.com/frogatto/frogatto";
21     description = "Data files to the frogatto game";
22     license = with licenses; [ cc-by-30 unfree ];
23     maintainers = with maintainers; [ astro ];
24   };