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.

21 lines
558 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";
pname = "owee";
2024-04-08 05:47:21 +00:00
version = "0.7";
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";
2024-04-08 05:47:21 +00:00
hash = "sha256-9FXcmddHg5mk5UWgYd4kTPOLOY/p6A/OBuvfas4elUA=";
};
2023-03-23 02:50:11 +00:00
meta = with lib; {
description = "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 ];
};
}