CuboCore.coreuniverse: 4.5.0 -> 5.0.0

Diff: https://gitlab.com/cubocore/coreapps/coreuniverse/-/compare/v4.5.0...v5.0.0
This commit is contained in:
emaryn 2025-04-20 11:49:38 +08:00
parent f5a95125c2
commit 2653a98ef8
3 changed files with 16 additions and 17 deletions

View file

@ -1,42 +1,43 @@
{ {
mkDerivation,
lib, lib,
stdenv,
fetchFromGitLab, fetchFromGitLab,
qtbase, qt6,
cmake, cmake,
ninja, ninja,
libcprime, libcprime,
libcsys, libcsys,
}: }:
mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "coreuniverse"; pname = "coreuniverse";
version = "4.5.0"; version = "5.0.0";
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "cubocore/coreapps"; owner = "cubocore/coreapps";
repo = pname; repo = "coreuniverse";
rev = "v${version}"; tag = "v${finalAttrs.version}";
hash = "sha256-SjD37+uLKJrPvjxK0douNgGCUq9He3EK86takZlrX7Q="; hash = "sha256-T5BYHzOqSED40hOc5VwD+oLTwBJ1wARvS8MwiYOWlXM=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
ninja ninja
qt6.wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [
qtbase qt6.qtbase
libcprime libcprime
libcsys libcsys
]; ];
meta = with lib; { meta = {
description = "Shows information about apps from the C Suite"; description = "Shows information about apps from the C Suite";
mainProgram = "coreuniverse"; mainProgram = "coreuniverse";
homepage = "https://gitlab.com/cubocore/coreapps/coreuniverse"; homepage = "https://gitlab.com/cubocore/coreapps/coreuniverse";
license = licenses.gpl3Plus; license = lib.licenses.gpl3Plus;
maintainers = with maintainers; [ dan4ik605743 ]; maintainers = with lib.maintainers; [ dan4ik605743 ];
platforms = platforms.linux; platforms = lib.platforms.linux;
}; };
} })

View file

@ -7466,7 +7466,6 @@ with pkgs;
newScope newScope
lxqt lxqt
lib lib
libsForQt5
; ;
} }
); );

View file

@ -1,8 +1,7 @@
{ {
lib,
newScope, newScope,
lxqt, lxqt,
lib,
libsForQt5,
}: }:
let let
@ -92,7 +91,7 @@ let
inherit libcprime libcsys; inherit libcprime libcsys;
}; };
coreuniverse = libsForQt5.callPackage ../applications/misc/cubocore-packages/coreuniverse { coreuniverse = callPackage ../applications/misc/cubocore-packages/coreuniverse {
inherit libcprime libcsys; inherit libcprime libcsys;
}; };
}; };