mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
31 lines
638 B
Nix
31 lines
638 B
Nix
{ lib, fetchFromGitHub, buildDunePackage
|
|
, containers, qcheck
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
version = "0.5.1";
|
|
pname = "oseq";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "c-cube";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-fyr/OKlvvHBfovtdubSW4rd4OwQbMLKWXghyU3uBy/k=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
duneVersion = "3";
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
containers
|
|
qcheck
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://c-cube.github.io/oseq/";
|
|
description = "Purely functional iterators compatible with standard `seq`";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|