about summary refs log tree commit diff
path: root/pkgs/development/compilers/fpc/libqt5pas.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/fpc/libqt5pas.nix')
-rw-r--r--pkgs/development/compilers/fpc/libqt5pas.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/compilers/fpc/libqt5pas.nix b/pkgs/development/compilers/fpc/libqt5pas.nix
deleted file mode 100644
index f3ddfe9edc23..000000000000
--- a/pkgs/development/compilers/fpc/libqt5pas.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ 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;
-  };
-}