Merge pull request #155063 from PhilippWoelfel/submit/lightly-qt-0.4.1
lightly-qt: init at 0.4.1 Co-authored-by: Nikolay Korotkiy <sikmir@disroot.org>
This commit is contained in:
commit
9ee88fd456
2 changed files with 44 additions and 0 deletions
42
pkgs/data/themes/lightly-qt/default.nix
Normal file
42
pkgs/data/themes/lightly-qt/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ mkDerivation
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
, kdecoration
|
||||
, plasma-workspace
|
||||
, qtbase
|
||||
, qt5
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "lightly-qt";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Luwx";
|
||||
repo = "Lightly";
|
||||
rev = "v${version}";
|
||||
sha256 = "0qkjzgjplgwczhk6959iah4ilvazpprv7yb809jy75kkp1jw8mwk";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
kdecoration
|
||||
plasma-workspace
|
||||
qtbase
|
||||
qt5.qtx11extras
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A fork of breeze theme style that aims to be visually modern and minimalistic";
|
||||
homepage = "https://github.com/Luwx/Lightly";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.pwoelfel ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -23595,6 +23595,8 @@ with pkgs;
|
|||
|
||||
libre-franklin = callPackage ../data/fonts/libre-franklin { };
|
||||
|
||||
lightly-qt = libsForQt5.callPackage ../data/themes/lightly-qt { };
|
||||
|
||||
line-awesome = callPackage ../data/fonts/line-awesome { };
|
||||
|
||||
linux-manual = callPackage ../data/documentation/linux-manual { };
|
||||
|
|
Loading…
Reference in a new issue