bring back shimejis
This commit is contained in:
29
hosts/default/apps/wl-shimeji.nix
Normal file
29
hosts/default/apps/wl-shimeji.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ lib, stdenv, fetchgit, pkg-config, wayland, wayland-protocols, wlr-protocols, wayland-scanner, libspng, pkgs }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wl_shimeji";
|
||||
version = "1.0.0"; # Change to the appropriate version
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/CluelessCatBurger/wl_shimeji.git";
|
||||
rev = "392a83d5658f283ace77b0c839d5a201cebc8784"; # Change to the appropriate commit
|
||||
sha256 = "sha256-T7sWuKOsc0vEfkcGbRXLHit24db97crEhYadOMq4MDM="; # Put the correct sha256 hash
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config wayland wayland-protocols wlr-protocols libspng wayland-scanner ];
|
||||
|
||||
buildInputs = [ ];
|
||||
|
||||
installPhase = ''
|
||||
make install PREFIX=$out
|
||||
find $out -type f -exec sed -i 's|#!/bin/python3|#!${pkgs.python3}/bin/python3|' {} +
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Shimeji reimplementation for Wayland in C";
|
||||
homepage = "https://github.com/CluelessCatBurger/wl_shimeji";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
@@ -28,13 +28,14 @@
|
||||
"$@"
|
||||
'')
|
||||
(writeShellScriptBin "regretevator" ''xdg-open roblox://placeId=4972273297'')
|
||||
(writeShellScriptBin "fix-gtk" ''${inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland}/bin/hyprctl dispatch exec "${pkgs.xdg-desktop-portal-gtk}/libexec/xdg-desktop-portal-gtk -r"'')
|
||||
(callPackage ./apps/wl-shimeji.nix {})
|
||||
catppuccin-gtk
|
||||
catppuccin
|
||||
catppuccin-qt5ct
|
||||
catppuccin-catwalk
|
||||
catppuccin-whiskers
|
||||
libxkbcommon
|
||||
nvidia-video-sdk
|
||||
ffmpeg-full
|
||||
gnupg
|
||||
nix-direnv
|
||||
|
||||
Reference in New Issue
Block a user