komorebi: init at 2.2.1

This commit is contained in:
Ilan Joselevich 2023-07-14 01:11:28 +03:00
parent 5a01208e9e
commit ec05aa83bc
No known key found for this signature in database
2 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,56 @@
{ lib
, stdenv
, fetchFromGitHub
, meson
, vala
, pkg-config
, glib
, gtk3
, libgee
, webkitgtk
, clutter-gtk
, clutter-gst
, ninja
, wrapGAppsHook
, testers
, komorebi
}:
stdenv.mkDerivation rec {
pname = "komorebi";
version = "2.2.1";
src = fetchFromGitHub {
owner = "Komorebi-Fork";
repo = "komorebi";
rev = "v${version}";
hash = "sha256-vER69dSxu4JuWNAADpkxHE/zjOMhQp+Fc21J+JHQ8xk=";
};
nativeBuildInputs = [
meson
vala
pkg-config
ninja
wrapGAppsHook
];
buildInputs = [
glib
gtk3
libgee
webkitgtk
clutter-gtk
clutter-gst
];
passthru.tests.version = testers.testVersion { package = komorebi; };
meta = with lib; {
description = "A beautiful and customizable wallpaper manager for Linux";
homepage = "https://github.com/Komorebi-Fork/komorebi";
license = licenses.gpl3Only;
maintainers = with maintainers; [ kranzes ];
platforms = platforms.linux;
};
}

View File

@ -5488,6 +5488,8 @@ with pkgs;
komga = callPackage ../servers/komga { };
komorebi = callPackage ../applications/graphics/komorebi { };
krapslog = callPackage ../tools/misc/krapslog { };
krelay = callPackage ../applications/networking/cluster/krelay { };