libcprime: init at 4.2.2

This commit is contained in:
dan4ik 2021-07-20 22:45:46 +07:00
parent 2047bf6e78
commit ced49e4225
2 changed files with 42 additions and 0 deletions

View 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;
};
}

View file

@ -6363,6 +6363,8 @@ in
libscrypt = callPackage ../development/libraries/libscrypt { };
libcprime = libsForQt5.callPackage ../development/libraries/libcprime { };
libcloudproviders = callPackage ../development/libraries/libcloudproviders { };
libcoap = callPackage ../applications/networking/libcoap {