ocamlPackages.genspio: init at 0.0.2 with dependencies

This commit is contained in:
Alexandre Esteves
2020-08-19 17:40:55 +01:00
committed by Vincent Laporte
parent 8ad1fc6115
commit a3aae22719
4 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ lib, fetchFromBitbucket, buildDunePackage }:
buildDunePackage rec {
pname = "nonstd";
version = "0.0.3";
minimumOCamlVersion = "4.02";
src = fetchFromBitbucket {
owner = "smondet";
repo = pname;
rev = "${pname}.${version}";
sha256 = "0ccjwcriwm8fv29ij1cnbc9win054kb6pfga3ygzdbjpjb778j46";
};
doCheck = true;
meta = with lib; {
homepage = https://bitbucket.org/smondet/nonstd;
description = "Non-standard mini-library";
license = licenses.isc;
maintainers = [ maintainers.alexfmpe ];
};
}