Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

44 lines
943 B
Nix

{
fetchFromGitHub,
lib,
meson,
ninja,
unstableGitUpdater,
stdenv,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "frog-protocols";
version = "0.01-unstable-2024-09-25";
src = fetchFromGitHub {
owner = "misyltoad";
repo = "frog-protocols";
rev = "38db7e30e62a988f701a2751447e0adffd68bb3f";
hash = "sha256-daWGw6mRmiz6f81JkMacPipXppRxbjL6gS1VqYlfec8=";
};
nativeBuildInputs = [
meson
ninja
];
passthru = {
updateScript = unstableGitUpdater { };
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" ];
};
})