nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ fetchFromGitHub, lib }:
2
3fetchFromGitHub rec {
4 pname = "5etools";
5 version = "1.175.2";
6
7 owner = "5etools-mirror-1";
8 repo = "5etools-mirror-1.github.io";
9 rev = "v${version}";
10 hash = "sha256-0+QjtcmKsfcSehvn4DChBhSVooy9wlqaSCgeAFgeL+w=";
11
12 meta = with lib; {
13 description = "A suite of browser-based tools for players and DMs of D&D 5e";
14 homepage = "https://5e.tools";
15 changelog = "https://github.com/5etools-mirror-1/5etools-mirror-1.github.io/releases/tag/v${version}";
16 license = [ licenses.mit ];
17 maintainers = with maintainers; [ urandom ];
18 hydraPlatforms = []; # src tarball is 4.7G, unpackeed 4.8G, exceeds hydras output limit
19 };
20}