Merge pull request #146774 from pasqui23/lightly

This commit is contained in:
Sandro 2021-12-22 07:03:56 +01:00 committed by GitHub
commit 1b419c58e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, extra-cmake-modules
, kdecoration
, kcoreaddons
, kguiaddons
, kconfigwidgets
, kwindowsystem
, kiconthemes
, qtx11extras
}:
mkDerivation rec{
pname = "lightly";
version = "0.4.1";
src = fetchFromGitHub {
owner = "Luwx";
repo = pname;
rev = "v${version}";
sha256 = "k1fEZbhzluNlAmj5s/O9X20aCVQxlWQm/Iw/euX7cmI=";
};
extraCmakeFlags=["-DBUILD_TESTING=OFF"];
nativeBuildInputs = [ cmake extra-cmake-modules ];
buildInputs = [
kcoreaddons
kguiaddons
kconfigwidgets
kwindowsystem
kiconthemes
qtx11extras
kdecoration
];
meta = with lib; {
description = "A modern style for qt applications";
license = licenses.gpl2Only;
maintainers = with maintainers; [ pasqui23 ];
homepage = "https://github.com/Luwx/Lightly/";
inherit (kwindowsystem.meta) platforms;
};
}

View file

@ -162,6 +162,7 @@ let
kwin-tiling = callPackage ./3rdparty/kwin/scripts/tiling.nix { };
krohnkite = callPackage ./3rdparty/kwin/scripts/krohnkite.nix { };
krunner-symbols = callPackage ./3rdparty/addons/krunner-symbols.nix { };
lightly = callPackage ./3rdparty/lightly { };
parachute = callPackage ./3rdparty/kwin/scripts/parachute.nix { };
};