summary refs log tree commit diff
path: root/pkgs/development/libraries/qscintilla
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-11-08 20:19:46 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2015-01-19 16:18:01 +0100
commitb23a6aaab4641ec8f974ab3f05c0c834735e6a43 (patch)
treee4fe1388646443f66b8e1c5d465166c3d5d63dfd /pkgs/development/libraries/qscintilla
parentd7857e05c9cecfe92380aeb990ef2ed135b5b3aa (diff)
downloadnixpkgs-b23a6aaab4641ec8f974ab3f05c0c834735e6a43.tar
nixpkgs-b23a6aaab4641ec8f974ab3f05c0c834735e6a43.tar.gz
nixpkgs-b23a6aaab4641ec8f974ab3f05c0c834735e6a43.tar.bz2
nixpkgs-b23a6aaab4641ec8f974ab3f05c0c834735e6a43.tar.lz
nixpkgs-b23a6aaab4641ec8f974ab3f05c0c834735e6a43.tar.xz
nixpkgs-b23a6aaab4641ec8f974ab3f05c0c834735e6a43.tar.zst
nixpkgs-b23a6aaab4641ec8f974ab3f05c0c834735e6a43.zip
qscintilla: update from 2.8.3 to 2.8.4
Diffstat (limited to 'pkgs/development/libraries/qscintilla')
-rw-r--r--pkgs/development/libraries/qscintilla/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/qscintilla/default.nix b/pkgs/development/libraries/qscintilla/default.nix
index 52736ba5d34..8c91db74f95 100644
--- a/pkgs/development/libraries/qscintilla/default.nix
+++ b/pkgs/development/libraries/qscintilla/default.nix
@@ -2,20 +2,20 @@
 
 stdenv.mkDerivation rec {
   pname = "qscintilla";
-  version = "2.8.3";
+  version = "2.8.4";
 
   name = "${pname}-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/pyqt/QScintilla2/QScintilla-${version}/QScintilla-gpl-${version}.tar.gz";
-    sha256 = "fb94e6d61c3ccd4bf167d5f092629e619f7069d42207469458998b761a7cf505";
+    sha256 = "03z8mc7wpk0hyza9b45pyf523gdk0qsqaywkprmp6ffc81s2sywv";
   };
 
   buildInputs = [ qt ];
 
   preConfigure = ''
     cd Qt4Qt5
-    sed -i -e "s,\$\$\\[QT_INSTALL_LIBS\\],$out/libs," \
+    sed -i -e "s,\$\$\\[QT_INSTALL_LIBS\\],$out/lib," \
            -e "s,\$\$\\[QT_INSTALL_HEADERS\\],$out/include/," \
            -e "s,\$\$\\[QT_INSTALL_TRANSLATIONS\\],$out/share/qt/translations," \
            -e "s,\$\$\\[QT_INSTALL_DATA\\],$out/share/qt," \