ocamlPackages.genspio: init at 0.0.2 with dependencies
This commit is contained in:
committed by
Vincent Laporte
parent
8ad1fc6115
commit
a3aae22719
24
pkgs/development/ocaml-modules/nonstd/default.nix
Normal file
24
pkgs/development/ocaml-modules/nonstd/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user