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

42 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, qt4, qmake4Hook, AGL }:
2016-12-17 00:15:21 +00:00
stdenv.mkDerivation rec {
2017-07-14 23:00:02 +00:00
name = "qwt-6.1.3";
2016-12-17 00:15:21 +00:00
src = fetchurl {
url = "mirror://sourceforge/qwt/${name}.tar.bz2";
2017-07-14 23:00:02 +00:00
sha256 = "0cwp63s03dw351xavb3pzbjlqvx7kj88wv7v4a2b18m9f97d7v7k";
2016-12-17 00:15:21 +00:00
};
buildInputs = [
qt4
] ++ stdenv.lib.optionals stdenv.isDarwin [ AGL ];
2016-12-17 00:15:21 +00:00
nativeBuildInputs = [ qmake4Hook ];
2017-07-14 23:12:13 +00:00
enableParallelBuilding = true;
2016-12-17 00:15:21 +00:00
postPatch = ''
sed -e "s|QWT_INSTALL_PREFIX.*=.*|QWT_INSTALL_PREFIX = $out|g" -i qwtconfig.pri
'';
# qwt.framework output includes a relative reference to itself, which breaks dependents
preFixup =
stdenv.lib.optionalString stdenv.isDarwin ''
echo "Attempting to repair qwt"
install_name_tool -id "$out/lib/qwt.framework/Versions/6/qwt" "$out/lib/qwt.framework/Versions/6/qwt"
'';
2016-12-17 00:15:21 +00:00
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;
2017-04-21 05:10:38 +00:00
platforms = platforms.linux ++ platforms.darwin;
2016-12-17 00:15:21 +00:00
maintainers = [ maintainers.bjornfor ];
branch = "6";
};
}