upgrade system and add wayland shimejis

This commit is contained in:
2025-01-30 17:57:15 +02:00
parent b5e782f395
commit cf5caba831
7 changed files with 251 additions and 276 deletions

View File

@@ -0,0 +1,28 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, wayland, waylandProtocols, wlrProtocols, libspng }:
stdenv.mkDerivation rec {
pname = "wl_shimeji";
version = "1.0.0"; # Change to the appropriate version
src = fetchFromGitHub {
owner = "CluelessCatBurger";
repo = "wl_shimeji";
rev = "392a83d5658f283ace77b0c839d5a201cebc8784"; # Change to the appropriate commit
sha256 = "sha256-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX="; # Put the correct sha256 hash
};
nativeBuildInputs = [ pkg-config wayland waylandProtocols wlrProtocols libspng ];
buildInputs = [ ];
installPhase = ''
make install PREFIX=$out
'';
meta = with lib; {
description = "Shimeji reimplementation for Wayland in C";
homepage = "https://github.com/CluelessCatBurger/wl_shimeji";
license = licenses.gpl2;
maintainers = with maintainers; [ ];
};
}