mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ocamlPackages.index: 1.0.1 -> 1.2.0
Note: tests are available, should be added in the future (crowbar is required)
This commit is contained in:
parent
87d598e310
commit
d7c3958769
1 changed files with 4 additions and 3 deletions
|
@ -1,16 +1,17 @@
|
||||||
{ lib, fetchurl, buildDunePackage, fmt, logs }:
|
{ lib, fetchurl, buildDunePackage, fmt, logs, stdlib-shims }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "index";
|
pname = "index";
|
||||||
version = "1.0.1";
|
version = "1.2.0";
|
||||||
|
|
||||||
minimumOCamlVersion = "4.07";
|
minimumOCamlVersion = "4.07";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz";
|
url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz";
|
||||||
sha256 = "1006wr3g21s4j2vsd73gphhkrh1fy4swh6gqvlsa9c6q7vz9wbvz";
|
sha256 = "0d44s1d2mpxvpg0zh57c928wf1w1wd33l1fw5r62al5zmi710ff6";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ stdlib-shims ];
|
||||||
propagatedBuildInputs = [ fmt logs ];
|
propagatedBuildInputs = [ fmt logs ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
|
Loading…
Reference in a new issue