lol
fork

Configure Feed

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

ocamlPackages.note: 0.0.2 → 0.0.3

+5 -3
+5 -3
pkgs/development/ocaml-modules/note/default.nix
··· 1 - { stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg }: 1 + { stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, brr }: 2 2 3 3 lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") 4 4 "note is not available for OCaml ${ocaml.version}" 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "ocaml${ocaml.version}-note"; 8 - version = "0.0.2"; 8 + version = "0.0.3"; 9 9 src = fetchurl { 10 10 url = "https://erratique.ch/software/note/releases/note-${version}.tbz"; 11 - hash = "sha256-b35XcaDUXQLqwkNfsJKX5A1q1pAhw/mgdwyOdacZiiY="; 11 + hash = "sha256-ZZOvCnyz7UWzFtGFI1uC0ZApzyylgZYM/HYIXGVXY2k="; 12 12 }; 13 13 buildInputs = [ ocaml findlib ocamlbuild topkg ]; 14 14 inherit (topkg) buildPhase installPhase; 15 + 16 + propagatedBuildInputs = [ brr ]; 15 17 16 18 meta = { 17 19 homepage = "https://erratique.ch/software/note";