mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 01:51:24 +00:00
8779e0f274
Commit 0055c6a
introduced a new preConfigure hook that sets the right
qmake path. Unfortunately the mkDerivation attributes of qwt override
the whole configurePhase, so this hook isn't run at all.
This fixes the build of qwt and it now successfully compiles on my
machine.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
33 lines
861 B
Nix
33 lines
861 B
Nix
{ stdenv, fetchurl, qtbase, qtsvg, qttools }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qwt-6.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qwt/${name}.tar.bz2";
|
|
sha256 = "031x4hz1jpbirv9k35rqb52bb9mf2w7qav89qv1yfw1r3n6z221b";
|
|
};
|
|
|
|
propagatedBuildInputs = [ qtbase qtsvg qttools ];
|
|
|
|
postPatch = ''
|
|
sed -e "s|QWT_INSTALL_PREFIX.*=.*|QWT_INSTALL_PREFIX = $out|g" -i qwtconfig.pri
|
|
'';
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
qmake -after doc.path=$out/share/doc/${name} -r
|
|
runHook postConfigure
|
|
'';
|
|
|
|
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;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
branch = "6";
|
|
};
|
|
}
|