Files
nixpkgs/pkgs/by-name/fr/frogatto/data.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

33 lines
696 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "frogatto-data";
version = "unstable-2023-02-27";
src = fetchFromGitHub {
owner = "frogatto";
repo = "frogatto";
rev = "5ca339f4b97e5004dc07394407bf1da43fbd6204";
sha256 = "sha256-6wqCFc7DlDt0u0JnPg4amVemc9HOjsB/U4s9n7N84QA=";
};
installPhase = ''
mkdir -p $out/share/frogatto/modules
cp -ar . $out/share/frogatto/modules/frogatto4
'';
meta = with lib; {
homepage = "https://github.com/frogatto/frogatto";
description = "Data files to the frogatto game";
license = with licenses; [
cc-by-30
unfree
];
maintainers = with maintainers; [ astro ];
};
}