openttd-nml: init at 0.5.3

This commit is contained in:
Rebecca Kelly 2021-07-03 08:50:21 -04:00 committed by Rebecca Kelly
parent 277d1a1569
commit 82c4085089
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, lib, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "openttd-nml";
version = "0.5.3";
src = fetchFromGitHub {
owner = "OpenTTD";
repo = "nml";
rev = version;
sha256 = "0kfnkshff3wrxsj1wpfbbw2mmgww2q80v63p5d2pp1f38x8j33w9";
};
propagatedBuildInputs = with python3Packages; [ply pillow];
meta = with lib; {
description = "Compiler for OpenTTD NML files";
homepage = "http://openttdcoop.org/";
license = licenses.gpl2;
maintainers = with maintainers; [ ToxicFrog ];
};
}

View File

@ -28980,6 +28980,7 @@ in
};
};
openttd-grfcodec = callPackage ../games/openttd/grfcodec.nix {};
openttd-nml = callPackage ../games/openttd/nml.nix {};
opentyrian = callPackage ../games/opentyrian { };