pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / by-name / fr / frog-protocols / package.nix
blobe9bc5e87fe79ea1a5b50149ef17237214d5f0aab
2   fetchFromGitHub,
3   lib,
4   meson,
5   ninja,
6   nix-update-script,
7   stdenv,
8   testers,
9 }:
11 stdenv.mkDerivation (finalAttrs: {
12   pname = "frog-protocols";
13   version = "0.01-unstable-2024-09-25";
15   src = fetchFromGitHub {
16     owner = "misyltoad";
17     repo = "frog-protocols";
18     rev = "17be81da707722b4f907c5287def442351b219b0";
19     hash = "sha256-N8a+o5I7CRoONCvjMHVmPkJTVncczuFVRHEtMFzMzss=";
20   };
22   nativeBuildInputs = [
23     meson
24     ninja
25   ];
27   passthru = {
28     updateScript = nix-update-script { };
29     tests.pkg-config = testers.hasPkgConfigModules { package = finalAttrs.finalPackage; };
30   };
32   meta = {
33     description = "Wayland protocols but much more iterative";
34     homepage = "https://github.com/misyltoad/frog-protocols";
35     license = lib.licenses.mit;
36     maintainers = with lib.maintainers; [
37       getchoo
38       Scrumplex
39     ];
40     platforms = lib.platforms.all;
41     pkgConfigModules = [ "frog-protocols" ];
42   };