nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5}:
6
7buildDunePackage (finalAttrs: {
8 pname = "gendarme";
9 version = "0.4";
10
11 minimalOCamlVersion = "4.13";
12
13 src = fetchFromGitHub {
14 owner = "bensmrs";
15 repo = "gendarme";
16 tag = finalAttrs.version;
17 hash = "sha256-yiHBAhnWYntv+5fKG7Sa1RqsnvWIsW0YDqp+uAzpg/s=";
18 };
19
20 meta = {
21 description = "Marshalling library for OCaml";
22 homepage = "https://github.com/bensmrs/gendarme";
23 changelog = "https://github.com/bensmrs/gendarme/releases/tag/${finalAttrs.src.tag}";
24 license = lib.licenses.mit;
25 maintainers = with lib.maintainers; [ ethancedwards8 ];
26 teams = with lib.teams; [ ngi ];
27 };
28})