nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5 lwt,
6}:
7
8buildDunePackage (finalAttrs: {
9 pname = "lwt-dllist";
10 version = "1.0.1";
11
12 src = fetchurl {
13 url = "https://github.com/mirage/lwt-dllist/releases/download/v${finalAttrs.version}/lwt-dllist-v${finalAttrs.version}.tbz";
14 hash = "sha256-6GznXkDwDVFRTPiy5x5RhMTLXa6WE2viRhNAbPwNum4=";
15 };
16
17 checkInputs = [
18 lwt
19 ];
20 doCheck = true;
21
22 meta = {
23 description = "Mutable doubly-linked list with Lwt iterators";
24 homepage = "https://github.com/mirage/lwt-dllist";
25 license = lib.licenses.mit;
26 maintainers = [ lib.maintainers.sternenseemann ];
27 };
28})