mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-06 21:09:22 +02:00
add kde related packages
This commit is contained in:
parent
42fa79f0f3
commit
8b9272581c
3 changed files with 85 additions and 0 deletions
44
packages/kde-wallpaper.nix
Normal file
44
packages/kde-wallpaper.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
kdePackages,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "wallpaper-engine-kde-plugin";
|
||||
version = "0-unstable-";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "catsout";
|
||||
repo = "wallpaper-engine-kde-plugin";
|
||||
rev = "34f7f01acba3bc8f94d478032cf86aef06b02d26";
|
||||
hash = "sha256-kuXDLlE//HuM8fJOGjZtsIBDIudR19mhwrBtwhDhN+k=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
kdePackages.extra-cmake-modules
|
||||
kdePackages.wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
kdePackages.qtbase
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DECM_DIR=${kdePackages.extra-cmake-modules}/share/ECM/cmake"
|
||||
"-DQT_MAJOR_VERSION=6"
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
meta = {
|
||||
description = "Kde wallpaper plugin integrating wallpaper engine";
|
||||
homepage = "https://github.com/catsout/wallpaper-engine-kde-plugin";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = with lib.maintainers; [ jopejoe1 ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue