dde-widgets: init at 6.0.14

This commit is contained in:
rewine
2023-11-23 10:00:32 +08:00
parent 5cf7c0bc9b
commit a1f93e275c
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,48 @@
{ stdenv
, lib
, fetchFromGitHub
, cmake
, pkg-config
, dde-qt-dbus-factory
, wrapQtAppsHook
, qtbase
, qtx11extras
, dtkwidget
, qt5integration
, gtest
}:
stdenv.mkDerivation rec {
pname = "dde-widgets";
version = "6.0.14";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
hash = "sha256-bmhT7UhMXtC5wlRtwlVnGjoq8rUQcDSk4rGQ0Xrz9ZI=";
};
nativeBuildInputs = [
cmake
pkg-config
dde-qt-dbus-factory
wrapQtAppsHook
];
buildInputs = [
qtbase
qtx11extras
dtkwidget
qt5integration
gtest
];
meta = with lib; {
description = "Desktop widgets service/implementation for DDE";
homepage = "https://github.com/linuxdeepin/dde-widgets";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = teams.deepin.members;
};
}
+1
View File
@@ -38,6 +38,7 @@ let
dde-polkit-agent = callPackage ./core/dde-polkit-agent { };
dpa-ext-gnomekeyring = callPackage ./core/dpa-ext-gnomekeyring { };
dde-gsettings-schemas = callPackage ./core/dde-gsettings-schemas { };
dde-widgets = callPackage ./core/dde-widgets { };
#### Dtk Application
deepin-album = callPackage ./apps/deepin-album { };