mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
755b915a15
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/'
20 lines
674 B
Nix
20 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
|
|
};
|
|
}
|