mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
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:
parent
f5a95125c2
commit
2653a98ef8
3 changed files with 16 additions and 17 deletions
|
@ -1,42 +1,43 @@
|
|||
{
|
||||
mkDerivation,
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitLab,
|
||||
qtbase,
|
||||
qt6,
|
||||
cmake,
|
||||
ninja,
|
||||
libcprime,
|
||||
libcsys,
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "coreuniverse";
|
||||
version = "4.5.0";
|
||||
version = "5.0.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "cubocore/coreapps";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-SjD37+uLKJrPvjxK0douNgGCUq9He3EK86takZlrX7Q=";
|
||||
repo = "coreuniverse";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-T5BYHzOqSED40hOc5VwD+oLTwBJ1wARvS8MwiYOWlXM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
ninja
|
||||
qt6.wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qt6.qtbase
|
||||
libcprime
|
||||
libcsys
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "Shows information about apps from the C Suite";
|
||||
mainProgram = "coreuniverse";
|
||||
homepage = "https://gitlab.com/cubocore/coreapps/coreuniverse";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ dan4ik605743 ];
|
||||
platforms = platforms.linux;
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ dan4ik605743 ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
|
|
@ -7466,7 +7466,6 @@ with pkgs;
|
|||
newScope
|
||||
lxqt
|
||||
lib
|
||||
libsForQt5
|
||||
;
|
||||
}
|
||||
);
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
{
|
||||
lib,
|
||||
newScope,
|
||||
lxqt,
|
||||
lib,
|
||||
libsForQt5,
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -92,7 +91,7 @@ let
|
|||
inherit libcprime libcsys;
|
||||
};
|
||||
|
||||
coreuniverse = libsForQt5.callPackage ../applications/misc/cubocore-packages/coreuniverse {
|
||||
coreuniverse = callPackage ../applications/misc/cubocore-packages/coreuniverse {
|
||||
inherit libcprime libcsys;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue