about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/owee/default.nix
blob: 3b8e6f58cfb2dd8e16a2778b58539cb8ca0fe6eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildDunePackage, fetchurl }:

buildDunePackage rec {
  minimalOCamlVersion = "4.06";
  duneVersion = "2";
  pname = "owee";
  version = "0.6";

  src = fetchurl {
    url =
      "https://github.com/let-def/owee/releases/download/v${version}/owee-${version}.tbz";
    sha256 = "sha256-GwXV5t4GYbDiGwyvQyW8NZoYvn4qXlLnjX331Bj1wjM=";
  };

  meta = with lib; {
    description = "An experimental OCaml library to work with DWARF format";
    homepage = "https://github.com/let-def/owee/";
    license = licenses.mit;
    maintainers = with maintainers; [ vbgl alizter ];
  };
}