summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.3-submodules/qt-submodule.nix
blob: 6f9278e98fffb00b5cfc07a62b26e7be3f199dce (plain) (blame)
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
53
54
55
56
57
58
59
60
61
62
{ stdenv, mkDerivation
, srcs, version
, lndir
, base
}:

with stdenv.lib;

args:

mkDerivation (args // {

  name = "${args.name}-${version}";
  inherit version;

  srcs = args.srcs or [srcs."${args.name}-opensource-src"];

  preConfigure = ''
    mkdir -p "$out"

    for qtInput in ${concatStringsSep " " args.qtInputs}; do
      lndir "$qtInput" "$out"
    done

    # Only this package's nix-support files go in $out
    rm -fr $out/nix-support

    # Override hardcoded paths in qmake
    rm -f $out/bin/qmake
    cp "${base}/bin/qmake" "$out/bin/qmake"
    rm -f $out/bin/qt.conf
    cat <<EOF >$out/bin/qt.conf
[Paths]
Prefix = $out
EOF
    export PATH=$out/bin:$PATH
  '' + (args.preConfigure or "");

  dontAddPrefix = args.dontAddPrefix or true;
  dontFixLibtool = args.dontFixLibtool or true;
  configureScript = args.configureScript or "qmake";

  postInstall = ''
    rm "$out/bin/qmake" "$out/bin/qt.conf"
  '';

  propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []);

  nativeBuildInputs = [ lndir ] ++ (args.nativeBuildInputs or []);

  enableParallelBuilding =
    args.enableParallelBuilding or true; # often fails on Hydra, as well as qt4

  meta = args.meta or {
    homepage = http://qt-project.org;
    description = "A cross-platform application framework for C++";
    license = "GPL/LGPL";
    maintainers = with maintainers; [ bbenoist qknight ttuegel ];
    platforms = platforms.linux;
  };

})