python312Packages.powerfox: init at 1.1.0 (#371207)
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / libcprime / default.nix
blob353128b091af690321a49d9bdca73eff37d443b0
2   mkDerivation,
3   lib,
4   fetchFromGitLab,
5   libnotify,
6   cmake,
7   ninja,
8   qtbase,
9   qtconnectivity,
12 mkDerivation rec {
13   pname = "libcprime";
14   version = "4.5.0";
16   src = fetchFromGitLab {
17     owner = "cubocore";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-j6WFLcjDMkYl+9HCmhMRttwtjNX05oP5mfdOsoLC7og=";
21   };
23   patches = [
24     ./0001-fix-application-dirs.patch
25   ];
27   nativeBuildInputs = [
28     cmake
29     ninja
30   ];
32   buildInputs = [
33     qtbase
34     qtconnectivity
35     libnotify
36   ];
38   meta = with lib; {
39     description = "Library for bookmarking, saving recent activites, managing settings of C-Suite";
40     homepage = "https://gitlab.com/cubocore/coreapps/libcprime";
41     license = licenses.gpl3Plus;
42     maintainers = with maintainers; [ dan4ik605743 ];
43     platforms = platforms.linux;
44   };