Merge pull request #230512 from HikariNee/lightly

lightly-boehs: init at 0.4.1

authored by

Jonas Heinrich and committed by
GitHub
21e5fa94 15e2a701

+53
+9
maintainers/maintainer-list.nix
··· 6291 6291 github = "higebu"; 6292 6292 githubId = 733288; 6293 6293 }; 6294 + 6295 + hikari = { 6296 + email = "HikariNee@protonmail.com"; 6297 + github = "HikariNee"; 6298 + githubId = 72349937; 6299 + name = "Hikari"; 6300 + }; 6301 + 6294 6302 hiljusti = { 6295 6303 name = "J.R. Hill"; 6296 6304 email = "hiljusti@so.dang.cool"; ··· 6303 6311 githubId = 19825977; 6304 6312 name = "Hiren Shah"; 6305 6313 }; 6314 + 6306 6315 hiro98 = { 6307 6316 email = "hiro@protagon.space"; 6308 6317 github = "vale981";
+42
pkgs/data/themes/lightly-boehs/default.nix
··· 1 + { mkDerivation 2 + , lib 3 + , kdecoration 4 + , fetchFromGitHub 5 + , cmake 6 + , extra-cmake-modules 7 + , plasma-workspace 8 + , qtbase 9 + , qt5 10 + }: 11 + 12 + mkDerivation rec { 13 + pname = "lightly-boehs"; 14 + version = "0.4.1"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "boehs"; 18 + repo = "Lightly"; 19 + rev = "1a831f7ff19ce93c04489faec74e389a216fdf11"; 20 + sha256 = "Icw+xVmuCB59ltyZJKyIeHI/yGfM2SbPrVzTVLqHWd4="; 21 + }; 22 + 23 + buildInputs = [ 24 + kdecoration 25 + plasma-workspace 26 + qtbase 27 + qt5.qtx11extras 28 + ]; 29 + 30 + nativeBuildInputs = [ 31 + cmake 32 + extra-cmake-modules 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "A fork of the Lightly breeze theme style that aims to be visually modern and minimalistic"; 37 + homepage = "https://github.com/boehs/Lightly"; 38 + license = licenses.gpl2Plus; 39 + maintainers = [ maintainers.hikari ]; 40 + platforms = platforms.all; 41 + }; 42 + }
+2
pkgs/top-level/all-packages.nix
··· 28231 28231 28232 28232 lightly-qt = libsForQt5.callPackage ../data/themes/lightly-qt { }; 28233 28233 28234 + lightly-boehs = libsForQt5.callPackage ../data/themes/lightly-boehs { }; 28235 + 28234 28236 linden-hill = callPackage ../data/fonts/linden-hill { }; 28235 28237 28236 28238 line-awesome = callPackage ../data/fonts/line-awesome { };