qwt: update 5.2.1 -> 5.2.3

Remove patch that don't apply anymore; use sed instead.
This commit is contained in:
Bjørn Forsman
2014-12-02 22:56:43 +01:00
parent a5e1fa2479
commit 9367a92569
2 changed files with 4 additions and 29 deletions
+4 -5
View File
@@ -1,20 +1,19 @@
{ stdenv, fetchurl, qt4 }:
stdenv.mkDerivation rec {
name = "qwt-5.2.1";
name = "qwt-5.2.3";
src = fetchurl {
url = "mirror://sourceforge/qwt/${name}.tar.bz2";
sha256 = "17snmh8qwsgb4j2yiyzmi0s1jli14vby5wv1kv4kvjq4aisvpf72";
sha256 = "1dqa096mm6n3bidfq2b67nmdsvsw4ndzzd1qhl6hn8skcwqazzip";
};
propagatedBuildInputs = [ qt4 ];
patches = [ ./prefix.diff ];
postPatch = ''
sed -e "s@\$\$\[QT_INSTALL_PLUGINS\]@$out/lib/qt4/plugins@" -i designer/designer.pro
'';
sed -e "s|INSTALLBASE.*=.*|INSTALLBASE = $out|g" -i qwtconfig.pri
'';
configurePhase = ''qmake INSTALLBASE=$out -after doc.path=$out/share/doc/${name} -r'';