about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/fpc/libqt5pas.nix
blob: f3ddfe9edc23d05c8508c43c8b75b2106b3a15ac (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
{ mkDerivation, lib, lazarus, qmake, qtbase, qtx11extras }:

mkDerivation {
  pname = "libqt5pas";
  inherit (lazarus) version src;

  sourceRoot = "lazarus/lcl/interfaces/qt5/cbindings";

  postPatch = ''
    substituteInPlace Qt5Pas.pro \
      --replace 'target.path = $$[QT_INSTALL_LIBS]' "target.path = $out/lib"
  '';

  nativeBuildInputs = [ qmake ];

  buildInputs = [ qtbase qtx11extras ];

  meta = with lib; {
    description = "Free Pascal Qt5 binding library";
    homepage = "https://wiki.freepascal.org/Qt5_Interface#libqt5pas";
    maintainers = with maintainers; [ sikmir ];
    inherit (lazarus.meta) license platforms;
  };
}