openttd-nml: init at 0.5.3
This commit is contained in:
parent
277d1a1569
commit
82c4085089
2 changed files with 23 additions and 0 deletions
22
pkgs/games/openttd/nml.nix
Normal file
22
pkgs/games/openttd/nml.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -28980,6 +28980,7 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
openttd-grfcodec = callPackage ../games/openttd/grfcodec.nix {};
|
openttd-grfcodec = callPackage ../games/openttd/grfcodec.nix {};
|
||||||
|
openttd-nml = callPackage ../games/openttd/nml.nix {};
|
||||||
|
|
||||||
opentyrian = callPackage ../games/opentyrian { };
|
opentyrian = callPackage ../games/opentyrian { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue