Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 48 lines 940 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitLab, 5 cmake, 6 extra-cmake-modules, 7 kdecoration, 8 plasma-workspace, 9 qtbase, 10}: 11 12stdenv.mkDerivation { 13 pname = "breath-theme"; 14 version = "unstable-2022-12-22"; 15 16 src = fetchFromGitLab { 17 domain = "gitlab.manjaro.org"; 18 owner = "themes"; 19 group = "artwork"; 20 repo = "breath"; 21 rev = "98822e7d903f16116bfb02ff9921824c139d7bbc"; 22 sha256 = "sha256-gvzhHOuOhxV3TC3UZeVpxeSDLpCJV+SaapcJ5mbHskY="; 23 }; 24 25 nativeBuildInputs = [ 26 cmake 27 extra-cmake-modules 28 29 kdecoration 30 plasma-workspace 31 qtbase 32 ]; 33 34 dontWrapQtApps = true; 35 36 cmakeFlags = [ 37 "-DBUILD_PLASMA_THEMES=ON" 38 "-DBUILD_SDDM_THEME=ON" 39 ]; 40 41 meta = with lib; { 42 description = "Manjaro KDE default theme"; 43 homepage = "https://gitlab.manjaro.org/artwork/themes/breath"; 44 license = licenses.cc-by-sa-40; 45 maintainers = with maintainers; [ huantian ]; 46 platforms = platforms.linux; 47 }; 48}