nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

commit 8affeeaccac7a13b79171e50844429b24bb52911
parent 272c9152a040f612d8416b9320d6eb2ee5a91850
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date:   Fri,  6 Oct 2023 01:05:06 +0400

Up

Diffstat:
Mpkgs/osm/map-machine/default.nix | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/pkgs/osm/map-machine/default.nix b/pkgs/osm/map-machine/default.nix @@ -2,14 +2,14 @@ python3Packages.buildPythonApplication rec { pname = "map-machine"; - version = "0.1.8"; + version = "0.1.9"; disabled = python3Packages.pythonOlder "3.9"; src = fetchFromGitHub { owner = "enzet"; repo = "map-machine"; rev = "v${version}"; - hash = "sha256-UaJyLsf3lsXIMGbJ3n1lYUHJzsKMciM2rdlU7mKmYeE="; + hash = "sha256-aOfvVyTgDxh7T2oAc+S1eU9b/JjXAhfc3WfR27ECXcY="; }; propagatedBuildInputs = with python3Packages; [ @@ -36,5 +36,6 @@ python3Packages.buildPythonApplication rec { inherit (src.meta) homepage; license = licenses.mit; maintainers = [ maintainers.sikmir ]; + mainProgram = "map-machine"; }; }