ocamlPackages.ezxmlm: 1.0.2 → 1.1.0

This commit is contained in:
Vincent Laporte 2021-04-10 08:01:26 +02:00 committed by Vincent Laporte
parent 9ebe50f667
commit 8db8975228

View file

@ -1,14 +1,14 @@
{ lib, fetchFromGitHub, buildDunePackage, xmlm }: { lib, fetchurl, buildDunePackage, xmlm }:
buildDunePackage rec { buildDunePackage rec {
pname = "ezxmlm"; pname = "ezxmlm";
version = "1.0.2"; version = "1.1.0";
src = fetchFromGitHub { useDune2 = true;
owner = "avsm";
repo = pname; src = fetchurl {
rev = "v${version}"; url = "https://github.com/mirage/ezxmlm/releases/download/v${version}/ezxmlm-v${version}.tbz";
sha256 = "1dgr61f0hymywikn67inq908x5adrzl3fjx3v14l9k46x7kkacl9"; sha256 = "123dn4h993mlng9gzf4nc6mw75ja7ndcxkbkwfs48j5jk1z05j6d";
}; };
propagatedBuildInputs = [ xmlm ]; propagatedBuildInputs = [ xmlm ];
@ -27,7 +27,7 @@ buildDunePackage rec {
just fine with it if you decide to switch over. just fine with it if you decide to switch over.
''; '';
maintainers = [ maintainers.carlosdagos ]; maintainers = [ maintainers.carlosdagos ];
inherit (src.meta) homepage; homepage = "https://github.com/mirage/ezxmlm/";
license = licenses.isc; license = licenses.isc;
}; };
} }