1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5}:
6
7buildDunePackage rec {
8 minimalOCamlVersion = "4.08";
9 pname = "owee";
10 version = "0.8";
11
12 src = fetchurl {
13 url = "https://github.com/let-def/owee/releases/download/v${version}/owee-${version}.tbz";
14 hash = "sha256-Bk9iRfWZXV0vTx+cbSmS4v2+Pd4ygha67Hz6vUhXlA0=";
15 };
16
17 meta = with lib; {
18 description = "Experimental OCaml library to work with DWARF format";
19 homepage = "https://github.com/let-def/owee/";
20 license = licenses.mit;
21 maintainers = with maintainers; [
22 vbgl
23 alizter
24 ];
25 };
26}