summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorThomas Bereknyei <tomberek@gmail.com>2021-04-17 23:16:11 -0400
committertomberek <tomberek@users.noreply.github.com>2021-05-04 20:05:22 -0400
commit1b802ce41455d6359783af34d4824df9ec2549e0 (patch)
tree28e3b637b4a1a9d1288c816b4f6e527426e866d2 /pkgs
parent22c2b7a64d27ed557d1201ea0f0818004098110c (diff)
downloadnixpkgs-1b802ce41455d6359783af34d4824df9ec2549e0.tar
nixpkgs-1b802ce41455d6359783af34d4824df9ec2549e0.tar.gz
nixpkgs-1b802ce41455d6359783af34d4824df9ec2549e0.tar.bz2
nixpkgs-1b802ce41455d6359783af34d4824df9ec2549e0.tar.lz
nixpkgs-1b802ce41455d6359783af34d4824df9ec2549e0.tar.xz
nixpkgs-1b802ce41455d6359783af34d4824df9ec2549e0.tar.zst
nixpkgs-1b802ce41455d6359783af34d4824df9ec2549e0.zip
sourcehut.coresrht: 0.65.2 -> 0.67.4
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/version-management/sourcehut/core.nix45
1 files changed, 36 insertions, 9 deletions
diff --git a/pkgs/applications/version-management/sourcehut/core.nix b/pkgs/applications/version-management/sourcehut/core.nix
index 69f8a7d4e45..d359d524eb2 100644
--- a/pkgs/applications/version-management/sourcehut/core.nix
+++ b/pkgs/applications/version-management/sourcehut/core.nix
@@ -1,24 +1,48 @@
-{ lib, fetchgit, fetchNodeModules, buildPythonPackage
-, pgpy, flask, bleach, humanize, html5lib, markdown, psycopg2, pygments
-, requests, sqlalchemy, cryptography, beautifulsoup4, sqlalchemy-utils, prometheus_client
-, celery, alembic, importlib-metadata, mistletoe
-, sassc, nodejs
-, writeText }:
+{ lib
+, fetchgit
+, fetchNodeModules
+, buildPythonPackage
+, pgpy
+, flask
+, bleach
+, misaka
+, humanize
+, html5lib
+, markdown
+, psycopg2
+, pygments
+, requests
+, sqlalchemy
+, cryptography
+, beautifulsoup4
+, sqlalchemy-utils
+, prometheus_client
+, celery
+, alembic
+, importlib-metadata
+, mistletoe
+, minio
+, sassc
+, nodejs
+, redis
+, writeText
+}:
 
 buildPythonPackage rec {
   pname = "srht";
-  version = "0.65.2";
+  version = "0.67.4";
 
   src = fetchgit {
     url = "https://git.sr.ht/~sircmpwn/core.sr.ht";
     rev = version;
-    sha256 = "1jfp1vc8mink3c7ccacgnqx8hpkck82ipxiql38q1y9l8xcsah03";
+    sha256 = "sha256-XvzFfcBK5Mq8p7xEBAF/eupUE1kkUBh5k+ByM/WA9bc=";
+    fetchSubmodules = true;
   };
 
   node_modules = fetchNodeModules {
     src = "${src}/srht";
     nodejs = nodejs;
-    sha256 = "0gwa2xb75g7fclrsr7r131kj8ri5gmhd96yw1iws5pmgsn2rlqi1";
+    sha256 = "sha256-IWKahdWv3qJ5DNyb1GB9JWYkZxghn6wzZe68clYXij8=";
   };
 
   patches = [
@@ -34,6 +58,7 @@ buildPythonPackage rec {
     pgpy
     flask
     bleach
+    misaka
     humanize
     html5lib
     markdown
@@ -51,6 +76,8 @@ buildPythonPackage rec {
     celery
     alembic
     importlib-metadata
+    minio
+    redis
   ];
 
   PKGVER = version;