Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
44 lines
815 B
Nix
44 lines
815 B
Nix
{ mkDerivation
|
|
, lib
|
|
, fetchFromGitLab
|
|
, libnotify
|
|
, cmake
|
|
, ninja
|
|
, qtbase
|
|
, qtconnectivity
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "libcprime";
|
|
version = "4.5.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "cubocore";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-j6WFLcjDMkYl+9HCmhMRttwtjNX05oP5mfdOsoLC7og=";
|
|
};
|
|
|
|
patches = [
|
|
./0001-fix-application-dirs.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtconnectivity
|
|
libnotify
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "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;
|
|
};
|
|
}
|