lightly: init at 0.4.1
This commit is contained in:
parent
c247bf87da
commit
7316de9ce5
46
pkgs/desktops/plasma-5/3rdparty/lightly/default.nix
vendored
Normal file
46
pkgs/desktops/plasma-5/3rdparty/lightly/default.nix
vendored
Normal 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;
|
||||
};
|
||||
}
|
@ -160,6 +160,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 { };
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user