mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
Suggested changes
This commit is contained in:
parent
d940b44137
commit
6ef367a5e8
|
@ -1,6 +1,6 @@
|
|||
{ buildOcaml, ocaml_oasis }:
|
||||
|
||||
{ name, version, buildInputs ? [], ...
|
||||
{ buildInputs ? [], ...
|
||||
}@args:
|
||||
|
||||
buildOcaml (args // {
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue