breath-theme: init at unstable-2022-12-22
This commit is contained in:
parent
b0f8b2976f
commit
8a1ff26db4
2 changed files with 46 additions and 0 deletions
44
pkgs/data/themes/breath-theme/default.nix
Normal file
44
pkgs/data/themes/breath-theme/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue