blob: 88f50619d7c620f7a43f209fc0d1ed79d7e789e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
lib,
fetchurl,
buildDunePackage,
}:
buildDunePackage (finalAttrs: {
pname = "grenier";
version = "0.16";
src = fetchurl {
url = "https://github.com/let-def/grenier/releases/download/v${finalAttrs.version}/grenier-${finalAttrs.version}.tbz";
hash = "sha256-j9Iqv59FicIGAIZU+p7rsc9KWHN+uzQTjGcJUg82t18=";
};
doCheck = true;
meta = {
description = "A collection of various algorithms in OCaml";
license = lib.licenses.isc;
homepage = "https://github.com/let-def/grenier";
};
})
|