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