lightly-qt: init at 0.4.1
This commit is contained in:
parent
ec938613e0
commit
be7e597173
43
pkgs/data/themes/lightly-qt/default.nix
Normal file
43
pkgs/data/themes/lightly-qt/default.nix
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
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 = {
|
||||||
|
description = "A fork of breeze theme style that aims to be visually modern and minimalistic";
|
||||||
|
homepage = "https://github.com/Luwx/Lightly";
|
||||||
|
license = lib.licenses.gpl2;
|
||||||
|
maintainers = [ lib.maintainers.pwoelfel ];
|
||||||
|
platforms = lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -23621,6 +23621,8 @@ with pkgs;
|
|||||||
|
|
||||||
libre-franklin = callPackage ../data/fonts/libre-franklin { };
|
libre-franklin = callPackage ../data/fonts/libre-franklin { };
|
||||||
|
|
||||||
|
lightly-qt = libsForQt5.callPackage ../data/themes/lightly-qt { };
|
||||||
|
|
||||||
line-awesome = callPackage ../data/fonts/line-awesome { };
|
line-awesome = callPackage ../data/fonts/line-awesome { };
|
||||||
|
|
||||||
linux-manual = callPackage ../data/documentation/linux-manual { };
|
linux-manual = callPackage ../data/documentation/linux-manual { };
|
||||||
|
Loading…
Reference in New Issue
Block a user