breath-theme: init at unstable-2022-12-22

This commit is contained in:
huantian 2022-07-27 11:06:41 -07:00
parent b0f8b2976f
commit 8a1ff26db4
No known key found for this signature in database
GPG Key ID: 4A0318E04E555DE5
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ lib
, stdenv
, fetchFromGitLab
, cmake
, extra-cmake-modules
, kdecoration
, plasma-workspace
, qtbase
}:
stdenv.mkDerivation {
pname = "breath-theme";
version = "unstable-2022-12-22";
src = fetchFromGitLab {
domain = "gitlab.manjaro.org";
owner = "themes";
group = "artwork";
repo = "breath";
rev = "98822e7d903f16116bfb02ff9921824c139d7bbc";
sha256 = "sha256-gvzhHOuOhxV3TC3UZeVpxeSDLpCJV+SaapcJ5mbHskY=";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
kdecoration
plasma-workspace
qtbase
];
dontWrapQtApps = true;
cmakeFlags = [ "-DBUILD_PLASMA_THEMES=ON" "-DBUILD_SDDM_THEME=ON" ];
meta = with lib; {
description = "Manjaro KDE default theme";
homepage = "https://gitlab.manjaro.org/artwork/themes/breath";
license = licenses.cc-by-sa-40;
maintainers = with maintainers; [ huantian ];
platforms = platforms.linux;
};
}

View File

@ -26895,6 +26895,8 @@ with pkgs;
blackout = callPackage ../data/fonts/blackout { };
breath-theme = libsForQt5.callPackage ../data/themes/breath-theme { };
brise = callPackage ../data/misc/brise { };
cacert = callPackage ../data/misc/cacert { };