nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 46 lines 846 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitLab, 5 libnotify, 6 cmake, 7 ninja, 8 qt6, 9}: 10 11stdenv.mkDerivation (finalAttrs: { 12 pname = "libcprime"; 13 version = "5.0.0"; 14 15 src = fetchFromGitLab { 16 owner = "cubocore"; 17 repo = "libcprime"; 18 tag = "v${finalAttrs.version}"; 19 hash = "sha256-3tAbF4CoZJf92Z2/M/Cq7ruPew34Hl5Ojks7fI6kPbU="; 20 }; 21 22 patches = [ 23 ./0001-fix-application-dirs.patch 24 ]; 25 26 nativeBuildInputs = [ 27 cmake 28 ninja 29 ]; 30 31 buildInputs = [ 32 qt6.qtbase 33 qt6.qtconnectivity 34 libnotify 35 ]; 36 37 dontWrapQtApps = true; 38 39 meta = { 40 description = "Library for bookmarking, saving recent activites, managing settings of C-Suite"; 41 homepage = "https://gitlab.com/cubocore/libcprime"; 42 license = lib.licenses.gpl3Plus; 43 maintainers = with lib.maintainers; [ ]; 44 platforms = lib.platforms.linux; 45 }; 46})