lol
0
fork

Configure Feed

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

ocamlPackages.metadata: init at 0.2.0

+24
+22
pkgs/development/ocaml-modules/metadata/default.nix
··· 1 + { lib, buildDunePackage, fetchFromGitHub, dune-configurator, pkg-config, ogg, flac }: 2 + 3 + buildDunePackage rec { 4 + pname = "metadata"; 5 + version = "0.2.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "savonet"; 9 + repo = "ocaml-metadata"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-sSekkyJ8D6mCCmxIyd+pBk/khaehA3BcpUQl2Gln+Ic="; 12 + }; 13 + 14 + minimalOCamlVersion = "4.14"; 15 + 16 + meta = with lib; { 17 + homepage = "https://github.com/savonet/ocaml-metadata"; 18 + description = "Library to read metadata from files in various formats. "; 19 + license = licenses.gpl3Plus; 20 + maintainers = with maintainers; [ dandellion ]; 21 + }; 22 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1046 1046 1047 1047 merlin-lib = callPackage ../development/tools/ocaml/merlin/lib.nix { }; 1048 1048 1049 + metadata = callPackage ../development/ocaml-modules/metadata { }; 1050 + 1049 1051 metrics = callPackage ../development/ocaml-modules/metrics { }; 1050 1052 1051 1053 metrics-influx = callPackage ../development/ocaml-modules/metrics/influx.nix { };