ocamlPackages.owee: 0.3 → 0.4

This commit is contained in:
Vincent Laporte 2022-03-13 15:04:53 +01:00 committed by Vincent Laporte
parent 201d1632e7
commit 804d792c44

View file

@ -1,20 +1,19 @@
{ lib, buildDunePackage, fetchFromGitHub }:
{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
minimumOCamlVersion = "4.06";
minimalOCamlVersion = "4.06";
useDune2 = true;
pname = "owee";
version = "0.3";
version = "0.4";
src = fetchFromGitHub {
owner = "let-def";
repo = "owee";
rev = "v${version}";
sha256 = "0jp8ca57488d7sj2nqy4yxcdpda6sxx51yyi8k6888hbinhyqp0j";
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";
inherit (src.meta) homepage;
homepage = "https://github.com/let-def/owee/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};