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

30 lines
832 B
Nix
Raw Normal View History

2017-06-02 16:40:19 +01:00
{ stdenv, fetchurl, qtbase, qtsvg, qttools, qmake }:
stdenv.mkDerivation rec {
2020-04-03 12:42:28 +01:00
name = "qwt-6.1.4";
src = fetchurl {
url = "mirror://sourceforge/qwt/${name}.tar.bz2";
2020-04-03 12:42:28 +01:00
sha256 = "1navkcnmn0qz8kzsyqmk32d929zl72l0b580w1ica7z5559j2a8m";
};
2015-12-20 02:09:59 +00:00
propagatedBuildInputs = [ qtbase qtsvg qttools ];
2017-06-02 16:40:19 +01:00
nativeBuildInputs = [ qmake ];
postPatch = ''
sed -e "s|QWT_INSTALL_PREFIX.*=.*|QWT_INSTALL_PREFIX = $out|g" -i qwtconfig.pri
'';
qmakeFlags = [ "-after doc.path=$out/share/doc/${name}" ];
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;
2018-03-13 09:48:17 +00:00
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
branch = "6";
};
}