blob: 11ab4425721f661e8df426dd07cc9eaed5ca0532 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
{
lib,
stdenv,
fetchurl,
qtbase,
qtsvg,
qttools,
qmake,
fixDarwinDylibNames,
}:
stdenv.mkDerivation rec {
pname = "qwt";
version = "6.3.0";
outputs = [
"out"
"dev"
];
src = fetchurl {
url = "mirror://sourceforge/qwt/qwt-${version}.tar.bz2";
sha256 = "sha256-3LCFiWwoquxVGMvAjA7itOYK2nrJKdgmOfYYmFGmEpo=";
};
propagatedBuildInputs = [
qtbase
qtsvg
qttools
];
nativeBuildInputs = [ qmake ] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
postPatch = ''
sed -e "s|QWT_INSTALL_PREFIX.*=.*|QWT_INSTALL_PREFIX = $out|g" -i qwtconfig.pri
'';
qmakeFlags = [ "-after doc.path=$out/share/doc/qwt-${version}" ];
dontWrapQtApps = true;
meta = {
description = "Qt widgets for technical applications";
homepage = "http://qwt.sourceforge.net/";
# LGPL 2.1 plus a few exceptions (more liberal)
license = with lib.licenses; [
lgpl21Only
qwtException
];
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.bjornfor ];
};
}
|