diff options
| author | yuuko <yuuko@partyvan.io> | 2026-01-03 16:22:56 -0800 |
|---|---|---|
| committer | yuuko <yuuko@partyvan.io> | 2026-01-03 16:22:56 -0800 |
| commit | c5bd862c3ad07c6c8a73c38eb399f538f3f22b34 (patch) | |
| tree | 4a1cbdb5ab14706b9a5063aee5cca7464cb87291 /srcds-pkgs/ambuild.nix | |
| parent | 14c3609343f1a43e7aa6910a47e074556dbe0028 (diff) | |
ambuild: obey 25.11 python conventions, actually use python3Packages.callPackage
Diffstat (limited to 'srcds-pkgs/ambuild.nix')
| -rw-r--r-- | srcds-pkgs/ambuild.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/srcds-pkgs/ambuild.nix b/srcds-pkgs/ambuild.nix index 5621f49..2775b8f 100644 --- a/srcds-pkgs/ambuild.nix +++ b/srcds-pkgs/ambuild.nix @@ -1,4 +1,4 @@ -{ lib, buildPythonPackage, fetchFromGitHub }: +{ lib, buildPythonPackage, fetchFromGitHub, setuptools }: let owner = "alliedmodders"; in buildPythonPackage rec { @@ -13,6 +13,8 @@ in buildPythonPackage rec { }; # doCheck = false; + pyproject = true; + build-system = [ setuptools ]; meta = with lib; { description = "Lightweight build system designed for performance and accuracy"; |
