openttd-nml: 0.8.0 -> 0.8.1, use finalAttrs

This commit is contained in:
Stefan Frijters
2026-01-24 22:56:56 +01:00
parent c81e8dc549
commit 8a5068a9f2
+5 -5
View File
@@ -4,16 +4,16 @@
python3,
}:
python3.pkgs.buildPythonApplication rec {
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "openttd-nml";
version = "0.8.0";
version = "0.8.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "OpenTTD";
repo = "nml";
tag = version;
hash = "sha256-LZhkyYTtolB9/1ZvwYa+TJJRBIifyuqlMawK7vhPV0k=";
tag = finalAttrs.version;
hash = "sha256-swAkUhduIhcfbAvKsPaJNBXcv8T6GDaxk3KKLLa9GQ8=";
};
propagatedBuildInputs = with python3.pkgs; [
@@ -27,4 +27,4 @@ python3.pkgs.buildPythonApplication rec {
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ ToxicFrog ];
};
}
})