mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
20 lines
584 B
Nix
20 lines
584 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 ];
|
|
};
|
|
}
|