nixpkgs/pkgs/development/libraries/qwt/default.nix

32 lines
912 B
Nix
Raw Normal View History

2016-04-16 23:50:08 +00:00
{ stdenv, fetchurl, qt4, qmake4Hook }:
stdenv.mkDerivation rec {
name = "qwt-5.2.3";
src = fetchurl {
url = "mirror://sourceforge/qwt/${name}.tar.bz2";
sha256 = "1dqa096mm6n3bidfq2b67nmdsvsw4ndzzd1qhl6hn8skcwqazzip";
};
propagatedBuildInputs = [ qt4 ];
2016-04-16 23:50:08 +00:00
nativeBuildInputs = [ qmake4Hook ];
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
'';
2016-04-16 23:50:08 +00:00
preConfigure = ''
qmakeFlags="$qmakeFlags INSTALLBASE=$out -after doc.path=$out/share/doc/${name}"
'';
2013-09-15 13:12:44 +00:00
meta = with stdenv.lib; {
description = "Qt widgets for technical applications";
homepage = http://qwt.sourceforge.net/;
# LGPL 2.1 plus a few exceptions (more liberal)
license = stdenv.lib.licenses.qwt;
2013-09-15 13:12:44 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}