nixpkgs/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
812 B
Nix
Raw Normal View History

2021-07-20 09:01:55 +00:00
{ mkDerivation
, lib
, fetchFromGitLab
, qtbase
, qtserialport
, qtermwidget
2021-10-20 15:35:34 +00:00
, cmake
, ninja
2021-07-20 09:01:55 +00:00
, libcprime
2021-10-20 15:35:34 +00:00
, libcsys
2021-07-20 09:01:55 +00:00
}:
mkDerivation rec {
pname = "coreterminal";
2023-09-22 16:09:40 +00:00
version = "4.5.0";
2021-07-20 09:01:55 +00:00
src = fetchFromGitLab {
owner = "cubocore/coreapps";
repo = pname;
rev = "v${version}";
2023-09-22 16:09:40 +00:00
hash = "sha256-zMSE1gQ2HJQCqil3MB4slRe0Cojv2XRLd8wLTokF8H0=";
2021-07-20 09:01:55 +00:00
};
nativeBuildInputs = [
cmake
ninja
];
buildInputs = [
qtbase
qtserialport
qtermwidget
libcprime
2021-10-20 15:35:34 +00:00
libcsys
2021-07-20 09:01:55 +00:00
];
meta = with lib; {
description = "A terminal emulator from the C Suite";
mainProgram = "coreterminal";
2021-07-20 09:01:55 +00:00
homepage = "https://gitlab.com/cubocore/coreapps/coreterminal";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dan4ik605743 ];
platforms = platforms.linux;
};
}