aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/compilers/fpc/libqt5pas.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/compilers/fpc/libqt5pas.nix')
-rw-r--r--nixpkgs/pkgs/development/compilers/fpc/libqt5pas.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/compilers/fpc/libqt5pas.nix b/nixpkgs/pkgs/development/compilers/fpc/libqt5pas.nix
new file mode 100644
index 00000000000..82cdd394e78
--- /dev/null
+++ b/nixpkgs/pkgs/development/compilers/fpc/libqt5pas.nix
@@ -0,0 +1,24 @@
+{ stdenv, lazarus, qt5 }:
+
+stdenv.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 = with qt5; [ qmake ];
+
+ buildInputs = with qt5; [ qtbase qtx11extras ];
+
+ meta = with stdenv.lib; {
+ description = "Free Pascal Qt5 binding library";
+ homepage = "https://wiki.freepascal.org/Qt5_Interface#libqt5pas";
+ maintainers = with maintainers; [ sikmir ];
+ inherit (lazarus.meta) license platforms;
+ };
+}