nixpkgs/pkgs/servers/web-apps/5etools/default.nix
Martin Weinelt 419ff35b40
_5etools: Disable hydra builds
The source tarball is too large for hydras output limit.

https://hydra.nixos.org/build/210505879
2023-03-04 19:44:09 +00:00

21 lines
676 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 = "A 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
};
}