aboutsummaryrefslogtreecommitdiff
path: root/srcds-pkgs/entq.nix
blob: 390f8b32d3e7b24e74939f3db34ab7967da2e386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
  };
})