mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
Merge pull request #130737 from dan4ik605743/coreterminal2
coreterminal: init at 4.2.0
This commit is contained in:
commit
531b1a1353
@ -0,0 +1,42 @@
|
||||
{ mkDerivation
|
||||
, lib
|
||||
, fetchFromGitLab
|
||||
, cmake
|
||||
, ninja
|
||||
, qtbase
|
||||
, qtserialport
|
||||
, qtermwidget
|
||||
, libcprime
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "coreterminal";
|
||||
version = "4.2.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "cubocore/coreapps";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-YXs6VTem3AaK4n1DYwKP/jqNuf09Srn2THHyJJnArlc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
ninja
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qtserialport
|
||||
qtermwidget
|
||||
libcprime
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A terminal emulator from the C Suite";
|
||||
homepage = "https://gitlab.com/cubocore/coreapps/coreterminal";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ dan4ik605743 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
40
pkgs/development/libraries/libcprime/default.nix
Normal file
40
pkgs/development/libraries/libcprime/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ mkDerivation
|
||||
, lib
|
||||
, fetchFromGitLab
|
||||
, libnotify
|
||||
, cmake
|
||||
, ninja
|
||||
, qtbase
|
||||
, qtconnectivity
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "libcprime";
|
||||
version = "4.2.2";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "cubocore";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-RywvFATA/+fDP/TR5QRWaJlDgy3EID//iVmrJcj3GXI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
ninja
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qtconnectivity
|
||||
libnotify
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A library for bookmarking, saving recent activites, managing settings of C-Suite";
|
||||
homepage = "https://gitlab.com/cubocore/coreapps/libcprime";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ dan4ik605743 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -931,6 +931,10 @@ in
|
||||
|
||||
cool-retro-term = libsForQt5.callPackage ../applications/terminal-emulators/cool-retro-term { };
|
||||
|
||||
coreterminal = libsForQt5.callPackage ../applications/terminal-emulators/coreterminal {
|
||||
inherit (lxqt) qtermwidget;
|
||||
};
|
||||
|
||||
eterm = callPackage ../applications/terminal-emulators/eterm { };
|
||||
|
||||
evilvte = callPackage ../applications/terminal-emulators/evilvte (config.evilvte or {});
|
||||
@ -6367,6 +6371,8 @@ in
|
||||
|
||||
libscrypt = callPackage ../development/libraries/libscrypt { };
|
||||
|
||||
libcprime = libsForQt5.callPackage ../development/libraries/libcprime { };
|
||||
|
||||
libcloudproviders = callPackage ../development/libraries/libcloudproviders { };
|
||||
|
||||
libcoap = callPackage ../applications/networking/libcoap {
|
||||
|
Loading…
Reference in New Issue
Block a user