Suggested changes

This commit is contained in:
Merlin Göttlinger 2019-08-06 06:46:03 +02:00
parent d940b44137
commit 6ef367a5e8
No known key found for this signature in database
GPG key ID: F3DD4A06EDED86E5
2 changed files with 8 additions and 8 deletions

View file

@ -1,6 +1,6 @@
{ buildOcaml, ocaml_oasis }:
{ name, version, buildInputs ? [], ...
{ buildInputs ? [], ...
}@args:
buildOcaml (args // {

View file

@ -1,25 +1,25 @@
{ stdenv, fetchFromGitHub, ocamlPackages, buildOasisPackage }:
{ lib, fetchFromGitHub, ocamlPackages, buildOasisPackage, ounit, ocaml_extlib, num }:
buildOasisPackage rec {
name = "tcslib";
version = "v0.3";
version = "0.3";
minimumSupportedOCamlVersion = "4.03.0";
src = fetchFromGitHub {
owner = "tcsprojects";
repo = "tcslib";
rev = version;
rev = "v${version}";
sha256 = "05g6m82blsccq8wx8knxv6a5fzww7hi624jx91f9h87nk2fsplhi";
};
buildInputs = with ocamlPackages; [ ounit ];
propagatedBuildInputs = with ocamlPackages; [ ocaml_extlib num ];
buildInputs = [ ounit ];
propagatedBuildInputs = [ ocaml_extlib num ];
meta = {
homepage = https://github.com/tcsprojects/tcslib;
description = "A multi-purpose library for OCaml";
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ mgttlinger ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ mgttlinger ];
};
}