mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
44 lines
803 B
Nix
44 lines
803 B
Nix
{
|
|
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;
|
|
};
|
|
}
|