biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / genspio / default.nix
blob14537c24c8bb12813c6cc8b2aacf738117b89c6d
1 { lib, fetchFromGitHub, buildDunePackage
2 , base, fmt
3 }:
5 buildDunePackage rec {
6   pname = "genspio";
7   version = "0.0.3";
9   duneVersion = "3";
11   src = fetchFromGitHub {
12     owner = "hammerlab";
13     repo = pname;
14     rev = "${pname}.${version}";
15     sha256 = "sha256:1788cnn10idp5i1hggg4pys7k0w8m3h2p4xa42jipfg4cpj7shaf";
16   };
18   propagatedBuildInputs = [ base fmt ];
20   doCheck = true;
22   meta = with lib; {
23     homepage = "https://smondet.gitlab.io/genspio-doc/";
24     description = "Typed EDSL to generate POSIX Shell scripts";
25     license = licenses.asl20;
26     maintainers = [ maintainers.alexfmpe ];
27   };