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

buildDunePackage rec {
  minimalOCamlVersion = "4.06";
  useDune2 = true;
  pname = "owee";
  version = "0.4";

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

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