ocamlPackages.ezxmlm: 1.0.2 → 1.1.0

authored by Vincent Laporte and committed by Vincent Laporte 8db89752 9ebe50f6

+8 -8
+8 -8
pkgs/development/ocaml-modules/ezxmlm/default.nix
··· 1 - { lib, fetchFromGitHub, buildDunePackage, xmlm }: 2 3 buildDunePackage rec { 4 pname = "ezxmlm"; 5 - version = "1.0.2"; 6 7 - src = fetchFromGitHub { 8 - owner = "avsm"; 9 - repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "1dgr61f0hymywikn67inq908x5adrzl3fjx3v14l9k46x7kkacl9"; 12 }; 13 14 propagatedBuildInputs = [ xmlm ]; ··· 27 just fine with it if you decide to switch over. 28 ''; 29 maintainers = [ maintainers.carlosdagos ]; 30 - inherit (src.meta) homepage; 31 license = licenses.isc; 32 }; 33 }
··· 1 + { lib, fetchurl, buildDunePackage, xmlm }: 2 3 buildDunePackage rec { 4 pname = "ezxmlm"; 5 + version = "1.1.0"; 6 7 + useDune2 = true; 8 + 9 + src = fetchurl { 10 + url = "https://github.com/mirage/ezxmlm/releases/download/v${version}/ezxmlm-v${version}.tbz"; 11 + sha256 = "123dn4h993mlng9gzf4nc6mw75ja7ndcxkbkwfs48j5jk1z05j6d"; 12 }; 13 14 propagatedBuildInputs = [ xmlm ]; ··· 27 just fine with it if you decide to switch over. 28 ''; 29 maintainers = [ maintainers.carlosdagos ]; 30 + homepage = "https://github.com/mirage/ezxmlm/"; 31 license = licenses.isc; 32 }; 33 }