nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fix-function-merge 43 lines 868 B view raw
1{ mkDerivation 2, lib 3, kdecoration 4, fetchFromGitHub 5, cmake 6, extra-cmake-modules 7, plasma-workspace 8, qtbase 9, qt5 10}: 11 12mkDerivation 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 = "Fork of the Lightly breeze theme style that aims to be visually modern and minimalistic"; 37 mainProgram = "lightly-settings5"; 38 homepage = "https://github.com/boehs/Lightly"; 39 license = licenses.gpl2Plus; 40 maintainers = [ maintainers.hikari ]; 41 platforms = platforms.all; 42 }; 43}