Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 44 lines 843 B view raw
1{ 2 mkDerivation, 3 lib, 4 fetchFromGitHub, 5 cmake, 6 extra-cmake-modules, 7 kdecoration, 8 plasma-workspace, 9 qtbase, 10 qt5, 11}: 12 13mkDerivation rec { 14 pname = "lightly-qt"; 15 version = "0.4.1"; 16 17 src = fetchFromGitHub { 18 owner = "Luwx"; 19 repo = "Lightly"; 20 rev = "v${version}"; 21 sha256 = "0qkjzgjplgwczhk6959iah4ilvazpprv7yb809jy75kkp1jw8mwk"; 22 }; 23 24 buildInputs = [ 25 kdecoration 26 plasma-workspace 27 qtbase 28 qt5.qtx11extras 29 ]; 30 31 nativeBuildInputs = [ 32 cmake 33 extra-cmake-modules 34 ]; 35 36 meta = with lib; { 37 description = "Fork of breeze theme style that aims to be visually modern and minimalistic"; 38 mainProgram = "lightly-settings5"; 39 homepage = "https://github.com/Luwx/Lightly"; 40 license = licenses.gpl2Plus; 41 maintainers = [ maintainers.pwoelfel ]; 42 platforms = platforms.all; 43 }; 44}