lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.printbox: add update script

+3 -1
+3 -1
pkgs/development/ocaml-modules/printbox/default.nix
··· 1 - { lib, fetchFromGitHub, buildDunePackage, ocaml, mdx }: 1 + { lib, fetchFromGitHub, buildDunePackage, ocaml, mdx, gitUpdater }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "printbox"; ··· 19 19 20 20 # mdx is not available for OCaml < 4.08 21 21 doCheck = lib.versionAtLeast ocaml.version "4.08"; 22 + 23 + passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 22 24 23 25 meta = { 24 26 homepage = "https://github.com/c-cube/printbox/";