mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-19 15:11:30 +00:00
wayland-colorbar: init at 0.1.1
This commit is contained in:
49
pkgs/by-name/wa/wayland-colorbar/package.nix
Normal file
49
pkgs/by-name/wa/wayland-colorbar/package.nix
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromCodeberg,
|
||||
cmake,
|
||||
libffi,
|
||||
pkg-config,
|
||||
wayland,
|
||||
wayland-protocols,
|
||||
wayland-scanner,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "wayland-colorbar";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromCodeberg {
|
||||
owner = "Pandapip1";
|
||||
repo = "wayland-colorbar";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-QaJWx5/DkxSc53BFufJwxYwwsJNSV2mYV5EjbFDmx3c=";
|
||||
};
|
||||
|
||||
__structuredAttrs = true;
|
||||
strictDeps = true;
|
||||
separateDebugInfo = true;
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
wayland-scanner
|
||||
];
|
||||
buildInputs = [
|
||||
libffi
|
||||
wayland
|
||||
wayland-protocols
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "A simple wayland client that can be used for testing";
|
||||
homepage = "https://codeberg.org/Pandapip1/wayland-colorbar";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ pandapip1 ];
|
||||
mainProgram = "wayland-colorbar";
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user