Loading pkgs/desktops/deepin/apps/deepin-terminal/default.nix 0 → 100644 +76 −0 Original line number Diff line number Diff line { stdenv , lib , fetchFromGitHub , fetchpatch , dtkwidget , qt5integration , qt5platform-plugins , dde-qt-dbus-factory , cmake , qtbase , qttools , qtx11extras , pkg-config , wrapQtAppsHook , at-spi2-core , libsecret , chrpath , lxqt , gtest }: stdenv.mkDerivation rec { pname = "deepin-terminal"; version = "5.4.34"; src = fetchFromGitHub { owner = "linuxdeepin"; repo = pname; rev = version; sha256 = "sha256-CpI7dyQwrYOYzqVZ6aa+/OAUC3xRyY4ZwzH1mqURTfY="; }; patches = [ (fetchpatch { name = "chore: use GNUInstallDirs in CmakeLists"; url = "https://github.com/linuxdeepin/deepin-terminal/commit/b18a2ca8411f09f5573aa2a8403a484b693ec975.patch"; sha256 = "sha256-Qy8Jg+7BfZr8tQEsCAzhMEwf6rU96gkgup5f9bMMELY="; }) ]; cmakeFlags = [ "-DVERSION=${version}" ]; nativeBuildInputs = [ cmake qttools pkg-config wrapQtAppsHook lxqt.lxqt-build-tools ]; buildInputs = [ dtkwidget qt5platform-plugins dde-qt-dbus-factory qtx11extras at-spi2-core libsecret chrpath gtest ]; strictDeps = true; # qt5integration must be placed before qtsvg in QT_PLUGIN_PATH qtWrapperArgs = [ "--prefix QT_PLUGIN_PATH : ${qt5integration}/${qtbase.qtPluginPrefix}" ]; meta = with lib; { description = "Terminal emulator with workspace, multiple windows, remote management, quake mode and other features"; homepage = "https://github.com/linuxdeepin/deepin-terminal"; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = teams.deepin.members; }; } pkgs/desktops/deepin/default.nix +1 −0 Original line number Diff line number Diff line Loading @@ -22,6 +22,7 @@ let #### Dtk Application deepin-calculator = callPackage ./apps/deepin-calculator { }; deepin-terminal = callPackage ./apps/deepin-terminal { }; #### ARTWORK dde-account-faces = callPackage ./artwork/dde-account-faces { }; Loading Loading
pkgs/desktops/deepin/apps/deepin-terminal/default.nix 0 → 100644 +76 −0 Original line number Diff line number Diff line { stdenv , lib , fetchFromGitHub , fetchpatch , dtkwidget , qt5integration , qt5platform-plugins , dde-qt-dbus-factory , cmake , qtbase , qttools , qtx11extras , pkg-config , wrapQtAppsHook , at-spi2-core , libsecret , chrpath , lxqt , gtest }: stdenv.mkDerivation rec { pname = "deepin-terminal"; version = "5.4.34"; src = fetchFromGitHub { owner = "linuxdeepin"; repo = pname; rev = version; sha256 = "sha256-CpI7dyQwrYOYzqVZ6aa+/OAUC3xRyY4ZwzH1mqURTfY="; }; patches = [ (fetchpatch { name = "chore: use GNUInstallDirs in CmakeLists"; url = "https://github.com/linuxdeepin/deepin-terminal/commit/b18a2ca8411f09f5573aa2a8403a484b693ec975.patch"; sha256 = "sha256-Qy8Jg+7BfZr8tQEsCAzhMEwf6rU96gkgup5f9bMMELY="; }) ]; cmakeFlags = [ "-DVERSION=${version}" ]; nativeBuildInputs = [ cmake qttools pkg-config wrapQtAppsHook lxqt.lxqt-build-tools ]; buildInputs = [ dtkwidget qt5platform-plugins dde-qt-dbus-factory qtx11extras at-spi2-core libsecret chrpath gtest ]; strictDeps = true; # qt5integration must be placed before qtsvg in QT_PLUGIN_PATH qtWrapperArgs = [ "--prefix QT_PLUGIN_PATH : ${qt5integration}/${qtbase.qtPluginPrefix}" ]; meta = with lib; { description = "Terminal emulator with workspace, multiple windows, remote management, quake mode and other features"; homepage = "https://github.com/linuxdeepin/deepin-terminal"; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = teams.deepin.members; }; }
pkgs/desktops/deepin/default.nix +1 −0 Original line number Diff line number Diff line Loading @@ -22,6 +22,7 @@ let #### Dtk Application deepin-calculator = callPackage ./apps/deepin-calculator { }; deepin-terminal = callPackage ./apps/deepin-terminal { }; #### ARTWORK dde-account-faces = callPackage ./artwork/dde-account-faces { }; Loading