nixpkgs/pkgs/games/openttd/nml.nix
2022-06-09 23:33:54 -03:00

30 lines
568 B
Nix

{ stdenv
, lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "openttd-nml";
version = "0.6.1";
src = fetchFromGitHub {
owner = "OpenTTD";
repo = "nml";
rev = version;
hash = "sha256-AmJrPyzPMe2F8geJhhRpO8aj467n1wqldC9iuzElFnw=";
};
propagatedBuildInputs = with python3.pkgs; [
pillow
ply
];
meta = with lib; {
homepage = "http://openttdcoop.org/";
description = "Compiler for OpenTTD NML files";
license = licenses.gpl2;
maintainers = with maintainers; [ ToxicFrog ];
};
}