From f10d09382c13b2510e3f723b6f05c3cf38d61a11 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sat, 10 Dec 2022 00:02:11 -0800 Subject: [PATCH] Fix homepage URL --- default.nix | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index e62e1d3..94f525b 100644 --- a/default.nix +++ b/default.nix @@ -33,7 +33,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix_2_3, git checkPhase = "./test.sh"; meta = { description = "A replacement for `nix-channel --update`"; - homepage = "https://git.scottworley.com/pinc"; + homepage = "https://git.scottworley.com/pinch"; license = pkgs.lib.licenses.gpl3; maintainers = with pkgs.lib.maintainers; [ chkno ]; }; diff --git a/setup.py b/setup.py index baf4f03..88931dc 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( description="Cache git content locally", author="Scott Worley", author_email="scottworley@scottworley.com", - url="https://git.scottworley.com/git-cache", + url="https://git.scottworley.com/pinch", py_modules=['pinch'], license="GPL-3.0", entry_points={'console_scripts': ['pinch = pinch:main']}, -- 2.44.1