nixpkgs/pkgs/applications/misc/cubocore-packages/libcprime/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
819 B
Nix
Raw Normal View History

2021-07-20 17:45:46 +02:00
{ mkDerivation
, lib
, fetchFromGitLab
, libnotify
, cmake
, ninja
, qtbase
, qtconnectivity
}:
mkDerivation rec {
pname = "libcprime";
2021-12-29 12:02:58 +01:00
version = "4.3.0";
2021-07-20 17:45:46 +02:00
src = fetchFromGitLab {
owner = "cubocore";
repo = pname;
rev = "v${version}";
2021-12-29 12:02:58 +01:00
sha256 = "sha256-+z5dXKaV2anN6OLMycEz87kDqQScgHHEKwGhDAdHSd4=";
2021-07-20 17:45:46 +02:00
};
2021-10-20 17:35:34 +02:00
patches = [
./0001-fix-application-dirs.patch
];
2021-07-28 01:30:34 +02:00
2021-07-20 17:45:46 +02: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;
};
}