vim-language-server: fix noBrokenSymlinks complaint
[NixPkgs.git] / pkgs / games / openttd / nml.nix
blobb2ce587d1aa4c959bbae54542fdb0f3964880091
2   lib,
3   fetchFromGitHub,
4   python3,
5 }:
7 python3.pkgs.buildPythonApplication rec {
8   pname = "openttd-nml";
9   version = "0.7.5";
11   src = fetchFromGitHub {
12     owner = "OpenTTD";
13     repo = "nml";
14     rev = "refs/tags/${version}";
15     hash = "sha256-OobTyPD7FtYMhJL3BDFXaZCOO2iPn8kjEw2OEdqQbr8=";
16   };
18   propagatedBuildInputs = with python3.pkgs; [
19     pillow
20     ply
21   ];
23   meta = with lib; {
24     homepage = "http://openttdcoop.org/";
25     description = "Compiler for OpenTTD NML files";
26     mainProgram = "nmlc";
27     license = licenses.gpl2Plus;
28     maintainers = with maintainers; [ ToxicFrog ];
29   };