about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorChristoph Heiss <christoph@c8h4.io>2024-02-07 10:11:11 +0100
committerChristoph Heiss <christoph@c8h4.io>2024-02-07 14:47:17 +0100
commitd9f7fe2d78c82419828ac438758e2322e31bfd33 (patch)
tree3c447e38ca4c0165758353bee4c9ed38be0905e7 /pkgs/applications/version-management
parentbbdc0e9c2e4711d91323246351887e9602056890 (diff)
downloadnixlib-d9f7fe2d78c82419828ac438758e2322e31bfd33.tar
nixlib-d9f7fe2d78c82419828ac438758e2322e31bfd33.tar.gz
nixlib-d9f7fe2d78c82419828ac438758e2322e31bfd33.tar.bz2
nixlib-d9f7fe2d78c82419828ac438758e2322e31bfd33.tar.lz
nixlib-d9f7fe2d78c82419828ac438758e2322e31bfd33.tar.xz
nixlib-d9f7fe2d78c82419828ac438758e2322e31bfd33.tar.zst
nixlib-d9f7fe2d78c82419828ac438758e2322e31bfd33.zip
sourcehut.mansrht: 0.16.1 -> 0.16.3
Also refactor it to the same common structure as all other sourcehut
packages, thus opening the possibility to even further simplify this in
the future.

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/sourcehut/man.nix30
1 files changed, 17 insertions, 13 deletions
diff --git a/pkgs/applications/version-management/sourcehut/man.nix b/pkgs/applications/version-management/sourcehut/man.nix
index 04bfabb8053b..7eca1db26b01 100644
--- a/pkgs/applications/version-management/sourcehut/man.nix
+++ b/pkgs/applications/version-management/sourcehut/man.nix
@@ -11,30 +11,34 @@
 , setuptools
 }:
 
-buildPythonPackage rec {
-  pname = "mansrht";
-  version = "0.16.1";
-  pyproject = true;
-
-  disabled = pythonOlder "3.7";
+let
+  version = "0.16.3";
+  gqlgen = import ./fix-gqlgen-trimpath.nix { inherit unzip; gqlgenVersion = "0.17.36"; };
 
   src = fetchFromSourcehut {
     owner = "~sircmpwn";
     repo = "man.sr.ht";
     rev = version;
-    sha256 = "sha256-94G9/Kzt1gaQ2CaXtsJYCB6W5OTdn27XhVdpNJ9a5cE=";
+    hash = "sha256-o1A3LmwH6WgpFqjKyL3UTru9q7TgKdOdbKZfJHR6fCA=";
   };
 
-  postPatch = ''
-    substituteInPlace Makefile --replace "all: api" ""
-  '';
-
   mansrht-api = buildGoModule ({
     inherit src version;
     pname = "mansrht-api";
     modRoot = "api";
-    vendorHash = "sha256-K5EmZ4U+xItTR85+SCwhwg5KUGLkKHo9Nr2pkvmJpfo=";
-  } // import ./fix-gqlgen-trimpath.nix { inherit unzip; });
+    vendorHash = "sha256-6AzKWytdyuofCFaDEdeO24mv1mtpnQEJydrjVWGY2eU=";
+  } // gqlgen);
+in
+buildPythonPackage rec {
+  inherit src version;
+  pname = "mansrht";
+  pyproject = true;
+
+  disabled = pythonOlder "3.7";
+
+  postPatch = ''
+    substituteInPlace Makefile --replace "all: api" ""
+  '';
 
   nativeBuildInputs = [
     pip