fix for 25.11

This commit is contained in:
Robin Appelman 2025-12-01 19:43:23 +01:00
commit b270759886
3 changed files with 16 additions and 12 deletions

20
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1750078272, "lastModified": 1764593611,
"narHash": "sha256-Mbu2+ipXe1tAW3UjWXzlDE3wzyVDMOcW1z/PgGmq5T4=", "narHash": "sha256-6SdexcO69Dlu14YN2xuB1A6JHWSrcqMj7Na9oK7IT2M=",
"owner": "nix-community", "owner": "nix-community",
"repo": "flakelight", "repo": "flakelight",
"rev": "38be6514d41071863d2a9a2f38f6f3b3433c69fb", "rev": "0d63256401341f528dd628f1a8e96d3afecade7a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,16 +22,16 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1750400657, "lastModified": 1764522689,
"narHash": "sha256-3vkjFnxCOP6vm5Pm13wC/Zy6/VYgei/I/2DWgW4RFeA=", "narHash": "sha256-SqUuBFjhl/kpDiVaKLQBoD8TLD+/cTUzzgVFoaHrkqY=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b2485d56967598da068b5a6946dadda8bfcbcd37", "rev": "8bb5646e0bed5dbd3ab08c7a7cc15b75ab4e1d0f",
"type": "github" "type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "id": "nixpkgs",
"ref": "nixos-25.05", "ref": "nixos-25.11",
"type": "indirect" "type": "indirect"
} }
}, },
@ -49,11 +49,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1714795926, "lastModified": 1758622040,
"narHash": "sha256-PkgC9jqoN6cJ8XYzTA2PlrWs7aPJkM3BGiTxNqax0cA=", "narHash": "sha256-BRUZZoQDCD1qByJjHm4YKipQlB2PburWLG9Iaggr8XQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "steam-fetcher", "repo": "steam-fetcher",
"rev": "12f66eafb7862d91b3e30c14035f96a21941bd9c", "rev": "ab5e3a0828b4b179feb548c57be584ce812956a8",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,6 +1,6 @@
{ {
inputs = { inputs = {
nixpkgs.url = "nixpkgs/nixos-25.05"; nixpkgs.url = "nixpkgs/nixos-25.11";
flakelight = { flakelight = {
url = "github:nix-community/flakelight"; url = "github:nix-community/flakelight";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -29,7 +29,7 @@
systems = ["x86_64-linux" "i686-linux"]; systems = ["x86_64-linux" "i686-linux"];
withOverlays = [ withOverlays = [
steam-fetcher.overlays.default steam-fetcher.overlay
(import ./nix/overlay.nix) (import ./nix/overlay.nix)
]; ];

View file

@ -2,6 +2,7 @@
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ambuild"; pname = "ambuild";
@ -14,6 +15,9 @@ buildPythonPackage rec {
hash = "sha256-ZDDeFzWvVSnovr6rDZOk+7BdzyUGe+7yEwE0cecsNps="; hash = "sha256-ZDDeFzWvVSnovr6rDZOk+7BdzyUGe+7yEwE0cecsNps=";
}; };
pyproject = true;
build-system = [setuptools];
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {