lol

wayneko: init at 0-unstable-2024-03-29

formatted with nixfmt-rfc-style
Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>

authored by

Francesco Gazzetta and committed by
John Titor
6c1956f2 b663d72f

+47
+47
pkgs/by-name/wa/wayneko/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromSourcehut, 5 + pixman, 6 + pkg-config, 7 + wayland, 8 + wayland-scanner, 9 + }: 10 + 11 + stdenv.mkDerivation { 12 + pname = "wayneko"; 13 + version = "0-unstable-2024-03-29"; 14 + 15 + src = fetchFromSourcehut { 16 + owner = "~leon_plickat"; 17 + repo = "wayneko"; 18 + rev = "c1919dc3a7e610d30e4c06efaa5af85941f27d86"; 19 + hash = "sha256-2cbEcDK6WZPe4HvY1pxmZVyDAj617VP1l0Gn7uSlNaE="; 20 + }; 21 + 22 + postPatch = '' 23 + substituteInPlace Makefile \ 24 + --replace-fail -Werror "" 25 + ''; 26 + 27 + nativeBuildInputs = [ 28 + pkg-config 29 + wayland-scanner 30 + ]; 31 + 32 + buildInputs = [ 33 + pixman 34 + wayland 35 + ]; 36 + 37 + makeFlags = [ "PREFIX=${placeholder "out"}" ]; 38 + 39 + meta = { 40 + description = "Neko on Wayland"; 41 + homepage = "https://sr.ht/~leon_plickat/wayneko"; 42 + license = lib.licenses.gpl3Only; 43 + maintainers = with lib.maintainers; [ fgaz ]; 44 + mainProgram = "wayneko"; 45 + platforms = lib.platforms.linux; 46 + }; 47 + }