nixpkgs/pkgs/development/ocaml-modules/owee/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
584 B
Nix
Raw Normal View History

2022-03-13 14:04:53 +00:00
{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
2022-03-13 14:04:53 +00:00
minimalOCamlVersion = "4.06";
2023-03-23 02:50:11 +00:00
duneVersion = "2";
pname = "owee";
2023-03-23 02:50:11 +00:00
version = "0.6";
2022-03-13 14:04:53 +00:00
src = fetchurl {
2023-03-23 02:50:11 +00:00
url =
"https://github.com/let-def/owee/releases/download/v${version}/owee-${version}.tbz";
sha256 = "sha256-GwXV5t4GYbDiGwyvQyW8NZoYvn4qXlLnjX331Bj1wjM=";
};
2023-03-23 02:50:11 +00:00
meta = with lib; {
description = "An experimental OCaml library to work with DWARF format";
2022-03-13 14:04:53 +00:00
homepage = "https://github.com/let-def/owee/";
2023-03-23 02:50:11 +00:00
license = licenses.mit;
maintainers = with maintainers; [ vbgl alizter ];
};
}