about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-08-29 18:32:16 +0200
committerGitHub <noreply@github.com>2016-08-29 18:32:16 +0200
commit04ab7cee022eb2fd852e23184533eed80e5dc246 (patch)
tree8fdd018a224e618a51e76d84112e5cddf3fbb29b /pkgs/applications/networking
parentacca6d22931e99430a6da2cfdfdcb2819fabc08e (diff)
parent8d26e566083d4c1a49e50c41fe729e11b4ce5444 (diff)
downloadnixlib-04ab7cee022eb2fd852e23184533eed80e5dc246.tar
nixlib-04ab7cee022eb2fd852e23184533eed80e5dc246.tar.gz
nixlib-04ab7cee022eb2fd852e23184533eed80e5dc246.tar.bz2
nixlib-04ab7cee022eb2fd852e23184533eed80e5dc246.tar.lz
nixlib-04ab7cee022eb2fd852e23184533eed80e5dc246.tar.xz
nixlib-04ab7cee022eb2fd852e23184533eed80e5dc246.tar.zst
nixlib-04ab7cee022eb2fd852e23184533eed80e5dc246.zip
Merge pull request #18088 from groxxda/fix/libcommuni
libcommuni: 2016-03-23 -> 2016-08-17, communi 2016-01-03 -> 2016-08-19
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/irc/communi/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/applications/networking/irc/communi/default.nix b/pkgs/applications/networking/irc/communi/default.nix
index 382044bec5a7..8b467a868b5c 100644
--- a/pkgs/applications/networking/irc/communi/default.nix
+++ b/pkgs/applications/networking/irc/communi/default.nix
@@ -2,12 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "communi-${version}";
-  version = "2016-01-03";
+  version = "2016-08-19";
 
   src = fetchgit {
     url = "https://github.com/communi/communi-desktop.git";
-    rev = "ad1b9a30ed6c51940c0d2714b126a32b5d68c876";
-    sha256 = "0jx963pfvzk4dbk8mrmzfrhzybk5y6ib9yzaj662wliayrzj7vpg";
+    rev = "d516b01b1382a805de65f21f3475e0a8e64a97b5";
+    sha256 = "1pn7mr7ch1ck5qv9zdn3ril40c9kk6l04475564rpzf11jly76an";
+    fetchSubmodules = true;
   };
 
   nativeBuildInputs = [ makeQtWrapper qmakeHook ];
@@ -34,6 +35,10 @@ stdenv.mkDerivation rec {
       --replace "/usr/bin" "$out/bin"
   '';
 
+  postFixup = ''
+    patchelf --set-rpath "$out/lib:$(patchelf --print-rpath $out/bin/.communi-wrapped)" $out/bin/.communi-wrapped
+  '';
+
   meta = with stdenv.lib; {
     description = "A simple and elegant cross-platform IRC client";
     homepage = https://github.com/communi/communi-desktop;