nixpkgs/pkgs/development/compilers/fpc/libqt5pas.nix

25 lines
645 B
Nix
Raw Normal View History

{ mkDerivation, lib, lazarus, qmake, qtbase, qtx11extras }:
2020-09-06 09:56:08 +00:00
mkDerivation {
2020-09-06 09:56:08 +00:00
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"
2020-09-06 09:56:08 +00:00
'';
nativeBuildInputs = [ qmake ];
2020-09-06 09:56:08 +00:00
buildInputs = [ qtbase qtx11extras ];
2020-09-06 09:56:08 +00:00
meta = with lib; {
2020-09-06 09:56:08 +00:00
description = "Free Pascal Qt5 binding library";
homepage = "https://wiki.freepascal.org/Qt5_Interface#libqt5pas";
maintainers = with maintainers; [ sikmir ];
inherit (lazarus.meta) license platforms;
};
}