mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
03a257e5a3
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
33 lines
682 B
Nix
33 lines
682 B
Nix
{ lib, fetchFromGitHub, buildDunePackage
|
|
, nonstd, sosa
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "genspio";
|
|
version = "0.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hammerlab";
|
|
repo = pname;
|
|
rev = "${pname}.${version}";
|
|
sha256 = "0cp6p1f713sfv4p2r03bzvjvakzn4ili7hf3a952b3w1k39hv37x";
|
|
};
|
|
|
|
minimumOCamlVersion = "4.03";
|
|
|
|
propagatedBuildInputs = [ nonstd sosa ];
|
|
|
|
configurePhase = ''
|
|
ocaml please.mlt configure
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|