2016-04-17 01:50:08 +02:00
|
|
|
{ stdenv, fetchurl, qt4, qmake4Hook }:
|
2011-08-11 11:35:10 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-12-02 21:55:42 +01:00
|
|
|
name = "qwt-5.2.3";
|
2011-08-11 11:35:10 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/qwt/${name}.tar.bz2";
|
2014-12-02 21:55:42 +01:00
|
|
|
sha256 = "1dqa096mm6n3bidfq2b67nmdsvsw4ndzzd1qhl6hn8skcwqazzip";
|
2011-08-11 11:35:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ qt4 ];
|
2016-04-17 01:50:08 +02:00
|
|
|
nativeBuildInputs = [ qmake4Hook ];
|
2011-08-11 11:35:10 +02:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -e "s@\$\$\[QT_INSTALL_PLUGINS\]@$out/lib/qt4/plugins@" -i designer/designer.pro
|
2014-12-02 21:55:42 +01:00
|
|
|
sed -e "s|INSTALLBASE.*=.*|INSTALLBASE = $out|g" -i qwtconfig.pri
|
|
|
|
'';
|
2011-08-11 11:35:10 +02:00
|
|
|
|
2016-04-17 01:50:08 +02:00
|
|
|
preConfigure = ''
|
|
|
|
qmakeFlags="$qmakeFlags INSTALLBASE=$out -after doc.path=$out/share/doc/${name}"
|
|
|
|
'';
|
2013-09-15 15:12:44 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Qt widgets for technical applications";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://qwt.sourceforge.net/";
|
2013-09-15 15:12:44 +02:00
|
|
|
# LGPL 2.1 plus a few exceptions (more liberal)
|
2014-11-06 01:44:33 +01:00
|
|
|
license = stdenv.lib.licenses.qwt;
|
2018-03-13 10:59:02 +01:00
|
|
|
platforms = platforms.unix;
|
2013-09-15 15:12:44 +02:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
2011-08-11 11:35:10 +02:00
|
|
|
}
|