lol

ocamlPackages.opam-file-format: 2.1.3 -> 2.1.4

https://github.com/ocaml/opam-file-format/releases/tag/2.1.4

authored by

Mario Rodas and committed by
Vincent Laporte
3d6cf755 7758705c

+3 -2
+3 -2
pkgs/development/ocaml-modules/opam-file-format/default.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "opam-file-format"; 5 - version = "2.1.3"; 5 + version = "2.1.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ocaml"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "1fxhppdmrysr2nb5z3c448h17np48f3ga9jih33acj78r4rdblcs"; 11 + sha256 = "sha256-wnAnvLNOc9FRBdLIFR08OKVaIjSEqJrcCIn4hmtYtjY="; 12 12 }; 13 13 14 14 useDune2 = true; ··· 18 18 license = licenses.lgpl21; 19 19 maintainers = with maintainers; [ vbgl ]; 20 20 homepage = "https://github.com/ocaml/opam-file-format/"; 21 + changelog = "https://github.com/ocaml/opam-file-format/raw/${version}/CHANGES"; 21 22 }; 22 23 }