mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
30 lines
815 B
Nix
30 lines
815 B
Nix
{ stdenv, fetchurl, qt4, qmake4Hook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qwt-6.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qwt/${name}.tar.bz2";
|
|
sha256 = "031x4hz1jpbirv9k35rqb52bb9mf2w7qav89qv1yfw1r3n6z221b";
|
|
};
|
|
|
|
buildInputs = [ qt4 ];
|
|
nativeBuildInputs = [ qmake4Hook ];
|
|
|
|
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;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
branch = "6";
|
|
};
|
|
}
|