aboutsummaryrefslogtreecommitdiff
path: root/srcds-pkgs/ambuild.nix
blob: 5621f49bbce45b68091e42336c5dcdbbd3d31140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchFromGitHub }:
let
  owner = "alliedmodders";
in buildPythonPackage rec {
  pname = "ambuild";
  version = "2024-07-07";

  src = fetchFromGitHub {
    inherit owner;
    repo = pname;
    rev = "551dd3f630f90377cbe536fbaf12e0b6bca91253";
    sha256 = "1xfjxs3ajrrz66pdspwrnr5faifk1r3i5nha8vmz510z07h5g6g3";
  };

  # doCheck = false;

  meta = with lib; {
    description = "Lightweight build system designed for performance and accuracy";
    homepage = "https://github.com/${owner}/${pname}";
    platforms = platforms.unix;
    license = licenses.bsd3;
  };
}