mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
27 lines
645 B
Nix
27 lines
645 B
Nix
{ lib, fetchFromGitLab, buildDunePackage, uri }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "resto";
|
|
version = "1.0";
|
|
duneVersion = "3";
|
|
src = fetchFromGitLab {
|
|
owner = "nomadic-labs";
|
|
repo = "resto";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-DIm7fmISsCgRDi4p3NsUk7Cvs/dHpIKMdAOVdYLX2mc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
uri
|
|
];
|
|
|
|
# resto has infinite recursion in their tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A minimal OCaml library for type-safe HTTP/JSON RPCs";
|
|
homepage = "https://gitlab.com/nomadic-labs/resto";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
}
|