mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
25 lines
645 B
Nix
25 lines
645 B
Nix
{ lib , fetchurl , buildDunePackage }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "res";
|
|
version = "5.0.1";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mmottl/res/releases/download/${version}/res-${version}.tbz";
|
|
hash = "sha256-rSrDMQBfnbWAr2LuajP3fveOtOwLyRbKPkaTKsnocQ4=";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Library for resizable, contiguous datastructures";
|
|
homepage = "https://github.com/mmottl/res";
|
|
changelog = "https://github.com/mmottl/res/blob/${version}/CHANGES.md";
|
|
license = lib.licenses.lgpl2Plus;
|
|
maintainers = with lib.maintainers; [ sixstring982 ];
|
|
};
|
|
}
|
|
|