2021-07-20 16:45:46 +01:00
|
|
|
{ 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=";
|
|
|
|
};
|
|
|
|
|
2021-07-28 00:30:34 +01:00
|
|
|
patches = [ ./0001-fix-application-dirs.patch ];
|
|
|
|
|
2021-07-20 16:45:46 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|