depot/third_party/nixpkgs/pkgs/development/ocaml-modules/genspio/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

28 lines
612 B
Nix

{ lib, fetchFromGitHub, buildDunePackage
, base, fmt
}:
buildDunePackage rec {
pname = "genspio";
version = "0.0.3";
duneVersion = "3";
src = fetchFromGitHub {
owner = "hammerlab";
repo = pname;
rev = "${pname}.${version}";
sha256 = "sha256:1788cnn10idp5i1hggg4pys7k0w8m3h2p4xa42jipfg4cpj7shaf";
};
propagatedBuildInputs = [ base fmt ];
doCheck = true;
meta = with lib; {
homepage = "https://smondet.gitlab.io/genspio-doc/";
description = "Typed EDSL to generate POSIX Shell scripts";
license = licenses.asl20;
maintainers = [ maintainers.alexfmpe ];
};
}