nixpkgs/pkgs/servers/web-apps/5etools/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

21 lines
674 B
Nix

{ fetchFromGitHub, lib }:
fetchFromGitHub rec {
pname = "5etools";
version = "1.175.2";
owner = "5etools-mirror-1";
repo = "5etools-mirror-1.github.io";
rev = "v${version}";
hash = "sha256-0+QjtcmKsfcSehvn4DChBhSVooy9wlqaSCgeAFgeL+w=";
meta = with lib; {
description = "Suite of browser-based tools for players and DMs of D&D 5e";
homepage = "https://5e.tools";
changelog = "https://github.com/5etools-mirror-1/5etools-mirror-1.github.io/releases/tag/v${version}";
license = [ licenses.mit ];
maintainers = with maintainers; [ urandom ];
hydraPlatforms = []; # src tarball is 4.7G, unpackeed 4.8G, exceeds hydras output limit
};
}