aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/desktops/deepin/dde-qt-dbus-factory/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/desktops/deepin/dde-qt-dbus-factory/default.nix')
-rw-r--r--nixpkgs/pkgs/desktops/deepin/dde-qt-dbus-factory/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/nixpkgs/pkgs/desktops/deepin/dde-qt-dbus-factory/default.nix b/nixpkgs/pkgs/desktops/deepin/dde-qt-dbus-factory/default.nix
deleted file mode 100644
index c7efb0f4b04..00000000000
--- a/nixpkgs/pkgs/desktops/deepin/dde-qt-dbus-factory/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ stdenv
-, fetchFromGitHub
-, qmake
-, python3
-, deepin
-}:
-
-stdenv.mkDerivation rec {
- pname = "dde-qt-dbus-factory";
- version = "5.0.1";
-
- src = fetchFromGitHub {
- owner = "linuxdeepin";
- repo = pname;
- rev = version;
- sha256 = "1wbh4jgvy3c09ivy0vvfk0azkg4d2sv37y23c9rq49jb3sakcjgm";
- };
-
- nativeBuildInputs = [
- qmake
- python3
- deepin.setupHook
- ];
-
- postPatch = ''
- searchHardCodedPaths
- fixPath $out /usr \
- libdframeworkdbus/DFrameworkdbusConfig.in \
- libdframeworkdbus/libdframeworkdbus.pro
- '';
-
- enableParallelBuilding = true;
-
- passthru.updateScript = deepin.updateScript { inherit pname version src; };
-
- meta = with stdenv.lib; {
- description = "Qt DBus interface library for Deepin software";
- homepage = "https://github.com/linuxdeepin/dde-qt-dbus-factory";
- license = with licenses; [ gpl3Plus lgpl2Plus ];
- platforms = platforms.linux;
- maintainers = with maintainers; [ romildo ];
- };
-}