2016-04-16 21:01:26 +01:00
|
|
|
{ stdenv, fetchurl, qtbase, qtsvg, qttools, qmakeHook }:
|
2014-05-03 13:09:22 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-09-19 17:12:26 +01:00
|
|
|
name = "qwt-6.1.2";
|
2014-05-03 13:09:22 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/qwt/${name}.tar.bz2";
|
2015-09-19 17:12:26 +01:00
|
|
|
sha256 = "031x4hz1jpbirv9k35rqb52bb9mf2w7qav89qv1yfw1r3n6z221b";
|
2014-05-03 13:09:22 +01:00
|
|
|
};
|
|
|
|
|
2015-12-20 02:09:59 +00:00
|
|
|
propagatedBuildInputs = [ qtbase qtsvg qttools ];
|
2016-04-16 21:01:26 +01:00
|
|
|
nativeBuildInputs = [ qmakeHook ];
|
2014-05-03 13:09:22 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -e "s|QWT_INSTALL_PREFIX.*=.*|QWT_INSTALL_PREFIX = $out|g" -i qwtconfig.pri
|
|
|
|
'';
|
|
|
|
|
2016-04-16 21:01:26 +01:00
|
|
|
qmakeFlags = [ "-after doc.path=$out/share/doc/${name}" ];
|
2014-05-03 13:09:22 +01: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)
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.qwt;
|
2014-05-03 13:09:22 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2014-11-19 18:53:56 +00:00
|
|
|
branch = "6";
|
2014-05-03 13:09:22 +01:00
|
|
|
};
|
|
|
|
}
|