mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
64ac27b97f
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
44 lines
941 B
Nix
44 lines
941 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
meson,
|
|
ninja,
|
|
nix-update-script,
|
|
stdenv,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "frog-protocols";
|
|
version = "0.01-unstable-2024-09-25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "misyltoad";
|
|
repo = "frog-protocols";
|
|
rev = "17be81da707722b4f907c5287def442351b219b0";
|
|
hash = "sha256-N8a+o5I7CRoONCvjMHVmPkJTVncczuFVRHEtMFzMzss=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.pkg-config = testers.hasPkgConfigModules { package = finalAttrs.finalPackage; };
|
|
};
|
|
|
|
meta = {
|
|
description = "Wayland protocols but much more iterative";
|
|
homepage = "https://github.com/misyltoad/frog-protocols";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
getchoo
|
|
Scrumplex
|
|
];
|
|
platforms = lib.platforms.all;
|
|
pkgConfigModules = [ "frog-protocols" ];
|
|
};
|
|
})
|