nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 32 lines 694 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5}: 6 7stdenv.mkDerivation { 8 pname = "frogatto-data"; 9 version = "unstable-2023-02-27"; 10 11 src = fetchFromGitHub { 12 owner = "frogatto"; 13 repo = "frogatto"; 14 rev = "5ca339f4b97e5004dc07394407bf1da43fbd6204"; 15 sha256 = "sha256-6wqCFc7DlDt0u0JnPg4amVemc9HOjsB/U4s9n7N84QA="; 16 }; 17 18 installPhase = '' 19 mkdir -p $out/share/frogatto/modules 20 cp -ar . $out/share/frogatto/modules/frogatto4 21 ''; 22 23 meta = { 24 homepage = "https://github.com/frogatto/frogatto"; 25 description = "Data files to the frogatto game"; 26 license = with lib.licenses; [ 27 cc-by-30 28 unfree 29 ]; 30 maintainers = with lib.maintainers; [ astro ]; 31 }; 32}