summary refs log tree commit diff
path: root/pkgs/applications/version-management/sourcehut
diff options
context:
space:
mode:
authorThomas Bereknyei <tomberek@gmail.com>2021-04-17 23:14:32 -0400
committertomberek <tomberek@users.noreply.github.com>2021-05-04 20:05:22 -0400
commiteec22cc44c8182dcc7b579dc70ed07d94f89cffc (patch)
tree34915b28dae227f32a0ad87fd8efa67c8b26e693 /pkgs/applications/version-management/sourcehut
parenta8dec0e5e09587f1ad55fe12fcd7924111165da8 (diff)
downloadnixpkgs-eec22cc44c8182dcc7b579dc70ed07d94f89cffc.tar
nixpkgs-eec22cc44c8182dcc7b579dc70ed07d94f89cffc.tar.gz
nixpkgs-eec22cc44c8182dcc7b579dc70ed07d94f89cffc.tar.bz2
nixpkgs-eec22cc44c8182dcc7b579dc70ed07d94f89cffc.tar.lz
nixpkgs-eec22cc44c8182dcc7b579dc70ed07d94f89cffc.tar.xz
nixpkgs-eec22cc44c8182dcc7b579dc70ed07d94f89cffc.tar.zst
nixpkgs-eec22cc44c8182dcc7b579dc70ed07d94f89cffc.zip
sourcehut.hubsrht: 0.11.5 -> 0.13.1
Diffstat (limited to 'pkgs/applications/version-management/sourcehut')
-rw-r--r--pkgs/applications/version-management/sourcehut/hub.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/pkgs/applications/version-management/sourcehut/hub.nix b/pkgs/applications/version-management/sourcehut/hub.nix
index 8b6d9201997..17cb3fe4b61 100644
--- a/pkgs/applications/version-management/sourcehut/hub.nix
+++ b/pkgs/applications/version-management/sourcehut/hub.nix
@@ -1,14 +1,18 @@
-{ lib, fetchgit, buildPythonPackage
-, srht }:
+{ lib
+, fetchFromSourcehut
+, buildPythonPackage
+, srht
+}:
 
 buildPythonPackage rec {
   pname = "hubsrht";
-  version = "0.11.5";
+  version = "0.13.1";
 
-  src = fetchgit {
-    url = "https://git.sr.ht/~sircmpwn/hub.sr.ht";
+  src = fetchFromSourcehut {
+    owner = "~sircmpwn";
+    repo = "hub.sr.ht";
     rev = version;
-    sha256 = "0cysdfy1z69jaizblbq0ywpcvcnx57rlzg42k98kd9w2mqzj5173";
+    sha256 = "sha256-Kqzy4mh5Nn1emzHBco/LVuXro/tW3NX+OYqdEwBSQ/U=";
   };
 
   nativeBuildInputs = srht.nativeBuildInputs;