diff options
author | yuuko <yuuko@partyvan.io> | 2025-09-01 03:15:06 -0700 |
---|---|---|
committer | yuuko <yuuko@partyvan.io> | 2025-09-01 03:15:06 -0700 |
commit | ee89c4bded858209b8692cfe266073727d056216 (patch) | |
tree | 934aa5a9a90160a0d6202e8aa4d360457734ecdb /srcds-pkgs/entq.nix | |
parent | 48c67b35e27c79fbcaab6a6f789adf2dcfe5c87a (diff) |
entq: init @ HEAD
Diffstat (limited to 'srcds-pkgs/entq.nix')
-rw-r--r-- | srcds-pkgs/entq.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/srcds-pkgs/entq.nix b/srcds-pkgs/entq.nix new file mode 100644 index 0000000..390f8b3 --- /dev/null +++ b/srcds-pkgs/entq.nix @@ -0,0 +1,20 @@ +{ lib, buildGoModule, fetchgit }: + +buildGoModule (self: { + pname = "entq"; + version = "2024-08-07"; + + src = fetchgit { + url = "https://git.partyvan.io/${self.pname}"; + rev = "159e8f5f7ae7e78a0ab1c2e11e181d4de2a49048"; + hash = "sha256-8arKve94ZX7Yo8H0ztebCTwSbJlOhg6qmzerPC6FEUk="; + }; + + vendorHash = "sha256-rYWitdwa1hH1KoU/NT6hoQjOesFH6hPRhGFpyN2AEno="; + + meta = { + description = "Source 1 map entity dumper with compression support"; + homepage = self.src.url; + license = lib.licenses.isc; + }; +}) |