depot/pkgs/desktops/deepin/core/dde-application-manager/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

41 lines
787 B
Nix

{
stdenv,
lib,
fetchFromGitHub,
cmake,
pkg-config,
qt6Packages,
dtk6core,
}:
stdenv.mkDerivation rec {
pname = "dde-application-manager";
version = "1.2.15";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
hash = "sha256-9WKKM3SAMgW+UL0DnzDFqA+HHi7euF/yyTyKSbrIgV4=";
};
nativeBuildInputs = [
cmake
pkg-config
qt6Packages.wrapQtAppsHook
];
buildInputs = [
qt6Packages.qtbase
dtk6core
];
meta = with lib; {
description = "Application manager for DDE";
mainProgram = "dde-application-manager";
homepage = "https://github.com/linuxdeepin/dde-application-manager";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = teams.deepin.members;
};
}