19 lines
531 B
Nix
19 lines
531 B
Nix
|
{ lib, fetchFromGitHub
|
||
|
, python3Packages, p7zip, nvidia-texture-tools, gdal, freeglut }:
|
||
|
|
||
|
python3Packages.buildPythonApplication rec {
|
||
|
pname = "Ortho4XP";
|
||
|
version = "1.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = pname;
|
||
|
repo = pname;
|
||
|
rev = "e20f0f4d7a5cb976bfdca87add265034179c9b9f";
|
||
|
hash = "sha256-WUlfhRBq4j1Eno+iMWKjjmtjpmUKvXaV2/5BOP5CoOU=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = with python3Packages; [
|
||
|
requests pyproj numpy gdal shapely Rtree p7zip
|
||
|
nvidia-texture-tools freeglut pillow-simd gdal tkinter ];
|
||
|
}
|