Skip to content

Commit

Permalink
deepin.deepin-shortcut-viewer: init at 5.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
wineee committed Mar 17, 2023
1 parent f6e0676 commit 12a7c7e
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
56 changes: 56 additions & 0 deletions pkgs/desktops/deepin/apps/deepin-shortcut-viewer/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{ stdenv
, lib
, fetchFromGitHub
, dtkwidget
, qt5integration
, qt5platform-plugins
, qmake
, qtbase
, qttools
, pkg-config
, wrapQtAppsHook
}:

stdenv.mkDerivation rec {
pname = "deepin-shortcut-viewer";
version = "5.0.7";

src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
sha256 = "sha256-r/ZhA9yiPnJNTrBkVOvaTqfRvGO/NTod5tiQCquG5Gw=";
};

nativeBuildInputs = [
qmake
qttools
pkg-config
wrapQtAppsHook
];

buildInputs = [
qtbase
dtkwidget
qt5platform-plugins
];

qmakeFlags = [
"VERSION=${version}"
"PREFIX=${placeholder "out"}"
];

# qt5integration must be placed before qtsvg in QT_PLUGIN_PATH
qtWrapperArgs = [
"--prefix QT_PLUGIN_PATH : ${qt5integration}/${qtbase.qtPluginPrefix}"
];

meta = with lib; {
description = "Deepin Shortcut Viewer";
homepage = "https://github.com/linuxdeepin/deepin-shortcut-viewer";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = teams.deepin.members;
};
}

1 change: 1 addition & 0 deletions pkgs/desktops/deepin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ let
deepin-movie-reborn = callPackage ./apps/deepin-movie-reborn { };
deepin-music = callPackage ./apps/deepin-music { };
deepin-picker = callPackage ./apps/deepin-picker { };
deepin-shortcut-viewer = callPackage ./apps/deepin-shortcut-viewer { };
deepin-terminal = callPackage ./apps/deepin-terminal { };
deepin-reader = callPackage ./apps/deepin-reader { };
deepin-voice-note = callPackage ./apps/deepin-voice-note { };
Expand Down

0 comments on commit 12a7c7e

Please sign in to comment.