about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/owee/default.nix
blob: 9eb81003d47a431e5e93cd83ad30d4595be9b2c1 (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, fetchFromGitHub }:

buildDunePackage rec {
  minimumOCamlVersion = "4.06";
  pname = "owee";
  version = "0.3";

  src = fetchFromGitHub {
    owner = "let-def";
    repo = "owee";
    rev = "v${version}";
    sha256 = "0jp8ca57488d7sj2nqy4yxcdpda6sxx51yyi8k6888hbinhyqp0j";
  };

  meta = {
    description = "An experimental OCaml library to work with DWARF format";
    inherit (src.meta) homepage;
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.vbgl ];
  };
}