about summary refs log tree commit diff
path: root/pkgs/aszlig
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2023-06-02 12:14:50 +0200
committeraszlig <aszlig@nix.build>2023-06-02 12:14:50 +0200
commitc25c98ab1aceeff7c0e0d2922f7936e21f322754 (patch)
treebba6a6666dfdd0e1befdbe7c8de60c1676b8d609 /pkgs/aszlig
parentcada8384d35d691688b52d2ccceed4bc81731744 (diff)
psi: Update to latest Git master
There is no particular reason for this other than me "feeling" that my
version became somewhat old. From looking at the upstream diffs the
changes are mostly fixes.

However, I also updated the QDarkStyle plugin, which does have quite a
few changes and the overall theming now looks lighter than before but
still not in a way that feels like an annoyance. We'll see and revert if
necessary.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/aszlig')
-rw-r--r--pkgs/aszlig/psi/darkstyle.patch4
-rw-r--r--pkgs/aszlig/psi/default.nix20
2 files changed, 12 insertions, 12 deletions
diff --git a/pkgs/aszlig/psi/darkstyle.patch b/pkgs/aszlig/psi/darkstyle.patch
index 4e3a1296..6e5082f5 100644
--- a/pkgs/aszlig/psi/darkstyle.patch
+++ b/pkgs/aszlig/psi/darkstyle.patch
@@ -6,7 +6,7 @@ index 7118ea75..c6f58e35 100644
  set(RESOURCES
      ${PROJECT_SOURCE_DIR}/psi.qrc
      ${ICONSETSQRC_OUTPUT_FILE}
-+    ${QDARKSTYLE_PATH}/qdarkstyle/style.qrc
++    ${QDARKSTYLE_PATH}/qdarkstyle/dark/darkstyle.qrc
  )
  qt5_add_resources(QRC_SOURCES ${RESOURCES})
  
@@ -19,7 +19,7 @@ index b45fbab0..1cbead4a 100644
  # endif
      PsiApplication app(argc, argv);
 +
-+    QFile darkstyle(":qdarkstyle/style.qss");
++    QFile darkstyle(":qdarkstyle/dark/darkstyle.qss");
 +    if (!darkstyle.exists()) {
 +        qWarning() << "Unable to set dark style";
 +    } else {
diff --git a/pkgs/aszlig/psi/default.nix b/pkgs/aszlig/psi/default.nix
index 9f0f12b8..b3be0926 100644
--- a/pkgs/aszlig/psi/default.nix
+++ b/pkgs/aszlig/psi/default.nix
@@ -12,19 +12,19 @@ let
   qdarkstyle = fetchFromGitHub {
     owner = "ColinDuquesnoy";
     repo = "QDarkStyleSheet";
-    rev = "c92d0c4c996e3e859134492e0f9f7f74bd0e12cd";
-    sha256 = "1qrmp3ibvgzwh2v1qfrfh8xiwvj0kbhj1bm17bjx7zpmnb8byz3m";
+    rev = "6ff5fdfd7b1e2a538b6f22bd85dd05a817d24c45";
+    hash = "sha256-NyoIBKjSAtTPNAou+o2yy1jTo51/FEejKo8nbSjlNbE";
   };
 
   usrsctp = stdenv.mkDerivation {
     pname = "usrsctp";
-    version = "git20220218";
+    version = "git20230524";
 
     src = fetchFromGitHub {
       owner = "sctplab";
       repo = "usrsctp";
-      rev = "b29c220387d78a48d78186628d4653c89da5dd30";
-      sha256 = "0rnhbl80l7gv6r9fqja333l8g06h6cj6d422f6wkx22hfxcphxvf";
+      rev = "ac559d2a95277e5e0827e9ee5a1d3b1b50e0822a";
+      hash = "sha256-CIdLGBVCVjz3LFAZXc0IcYsQUOG2NpgEHsWNpzs97gI";
     };
 
     nativeBuildInputs = [ cmake ];
@@ -32,21 +32,21 @@ let
 
 in stdenv.mkDerivation rec {
   name = "psi-${version}";
-  version = "2.0git20220315aszlig";
+  version = "2.0git20230530aszlig";
 
   src = fetchFromGitHub {
     owner = "psi-im";
     repo = "psi";
-    rev = "e7958dad81c870da52ad4c6d8beb8e60d736f73c";
-    hash = "sha256-qhoqmdVHN6aZLMkRSBoJ+lDcIizNM/TyHWi/Ez5lj1g";
+    rev = "718c3dfef7f374e2de601b89a22421a139e17fa6";
+    hash = "sha256-514+4A+ij0rYBeGiIxHtkUFL/Tf6CQh2kRXVLYUdnTc";
     fetchSubmodules = true;
   };
 
   plugins = fetchFromGitHub {
     owner = "psi-im";
     repo = "plugins";
-    rev = "ddfcbe1cfdb3afc221547bd4d658c51342cd084b";
-    hash = "sha256-UEdYAGyRxdLKx7GfXN7bnu9NRRJuEeZYrtVciNnl52E";
+    rev = "dfdb6d962ac92920861af900f41e8f590e500206";
+    hash = "sha256-xrKIP34aXkBX/H31m1Z9dWRcp9JkuQonLTlxX0UA+g4";
   };
 
   patches = [