summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2023-05-11 12:04:20 +0200
committerGitHub <noreply@github.com>2023-05-11 12:04:20 +0200
commit21e5fa94633f5258eaf6352a51d29cc85a99a26b (patch)
tree8ebe927c60927adc36e71f498795f7747798586c /pkgs/data
parent15e2a701e657da653e37a9b30822f2719172a740 (diff)
parentc48aae965e046dc41d11fc58234ce48dece3b385 (diff)
downloadnixpkgs-21e5fa94633f5258eaf6352a51d29cc85a99a26b.tar
nixpkgs-21e5fa94633f5258eaf6352a51d29cc85a99a26b.tar.gz
nixpkgs-21e5fa94633f5258eaf6352a51d29cc85a99a26b.tar.bz2
nixpkgs-21e5fa94633f5258eaf6352a51d29cc85a99a26b.tar.lz
nixpkgs-21e5fa94633f5258eaf6352a51d29cc85a99a26b.tar.xz
nixpkgs-21e5fa94633f5258eaf6352a51d29cc85a99a26b.tar.zst
nixpkgs-21e5fa94633f5258eaf6352a51d29cc85a99a26b.zip
Merge pull request #230512 from HikariNee/lightly
lightly-boehs: init at 0.4.1
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/themes/lightly-boehs/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/data/themes/lightly-boehs/default.nix b/pkgs/data/themes/lightly-boehs/default.nix
new file mode 100644
index 00000000000..10c30a431e7
--- /dev/null
+++ b/pkgs/data/themes/lightly-boehs/default.nix
@@ -0,0 +1,42 @@
+{ mkDerivation
+, lib
+, kdecoration
+, fetchFromGitHub
+, cmake
+, extra-cmake-modules
+, plasma-workspace
+, qtbase
+, qt5
+}:
+
+mkDerivation rec {
+  pname = "lightly-boehs";
+  version = "0.4.1";
+
+  src = fetchFromGitHub {
+    owner = "boehs";
+    repo = "Lightly";
+    rev = "1a831f7ff19ce93c04489faec74e389a216fdf11";
+    sha256 = "Icw+xVmuCB59ltyZJKyIeHI/yGfM2SbPrVzTVLqHWd4=";
+  };
+
+  buildInputs = [
+    kdecoration
+    plasma-workspace
+    qtbase
+    qt5.qtx11extras
+  ];
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  meta = with lib; {
+    description = "A fork of the Lightly breeze theme style that aims to be visually modern and minimalistic";
+    homepage = "https://github.com/boehs/Lightly";
+    license = licenses.gpl2Plus;
+    maintainers = [ maintainers.hikari ];
+    platforms = platforms.all;
+  };
+}