mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #243347 from Kranzes/komorebi
komorebi: init at 2.2.1
This commit is contained in:
commit
5c0156c0ab
56
pkgs/applications/graphics/komorebi/default.nix
Normal file
56
pkgs/applications/graphics/komorebi/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -5510,6 +5510,8 @@ with pkgs;
|
||||
|
||||
komga = callPackage ../servers/komga { };
|
||||
|
||||
komorebi = callPackage ../applications/graphics/komorebi { };
|
||||
|
||||
krapslog = callPackage ../tools/misc/krapslog { };
|
||||
|
||||
krelay = callPackage ../applications/networking/cluster/krelay { };
|
||||
|
Loading…
Reference in New Issue
Block a user