CuboCore.coreshot: 4.5.0 -> 5.0.0

Diff: https://gitlab.com/cubocore/coreapps/coreshot/-/compare/v4.5.0...v5.0.0
This commit is contained in:
emaryn
2025-04-20 11:19:47 +08:00
parent fb1c2ad257
commit 2275874bce
2 changed files with 15 additions and 16 deletions
@@ -1,44 +1,43 @@
{
mkDerivation,
lib,
stdenv,
fetchFromGitLab,
qtbase,
qtx11extras,
qt6,
cmake,
ninja,
libcprime,
libcsys,
}:
mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "coreshot";
version = "4.5.0";
version = "5.0.0";
src = fetchFromGitLab {
owner = "cubocore/coreapps";
repo = pname;
rev = "v${version}";
hash = "sha256-XPECvwZkJIoN/r5oFWJpgl/WASpybgLjCK/F0XVMHyU=";
repo = "coreshot";
tag = "v${finalAttrs.version}";
hash = "sha256-5KGaMCL9BCGZwK7HQz87B1qrNvx5SQyMooZw4MwMdCc=";
};
nativeBuildInputs = [
cmake
ninja
qt6.wrapQtAppsHook
];
buildInputs = [
qtbase
qtx11extras
qt6.qtbase
libcprime
libcsys
];
meta = with lib; {
meta = {
description = "Screen capture utility from the C Suite";
mainProgram = "coreshot";
homepage = "https://gitlab.com/cubocore/coreapps/coreshot";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dan4ik605743 ];
platforms = platforms.linux;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ dan4ik605743 ];
platforms = lib.platforms.linux;
};
}
})
+1 -1
View File
@@ -67,7 +67,7 @@ let
inherit libcprime libcsys;
};
coreshot = libsForQt5.callPackage ../applications/misc/cubocore-packages/coreshot {
coreshot = callPackage ../applications/misc/cubocore-packages/coreshot {
inherit libcprime libcsys;
};