Update aider (#375634)
[NixPkgs.git] / pkgs / development / ocaml-modules / repr / default.nix
blobba9a0fc8572920d61dd8f2a2ff4fea7cec7b206f
2   lib,
3   buildDunePackage,
4   fetchFromGitHub,
5   base64,
6   either,
7   fmt,
8   jsonm,
9   uutf,
10   optint,
13 buildDunePackage rec {
14   pname = "repr";
15   version = "0.7.0";
17   src = fetchFromGitHub {
18     owner = "mirage";
19     repo = "repr";
20     rev = version;
21     hash = "sha256-SM55m5NIaQ2UKAtznNFSt3LN4QA7As0DyTxVeQjOTjI=";
22   };
24   minimalOCamlVersion = "4.08";
26   propagatedBuildInputs = [
27     base64
28     either
29     fmt
30     jsonm
31     uutf
32     optint
33   ];
35   meta = with lib; {
36     description = "Dynamic type representations. Provides no stability guarantee";
37     homepage = "https://github.com/mirage/repr";
38     license = licenses.isc;
39     maintainers = with maintainers; [ sternenseemann ];
40   };