depot/third_party/nixpkgs/pkgs/development/ocaml-modules/metadata/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

22 lines
615 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, pkg-config, ogg, flac }:
buildDunePackage rec {
pname = "metadata";
version = "0.2.0";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-metadata";
rev = "v${version}";
sha256 = "sha256-sSekkyJ8D6mCCmxIyd+pBk/khaehA3BcpUQl2Gln+Ic=";
};
minimalOCamlVersion = "4.14";
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-metadata";
description = "Library to read metadata from files in various formats. ";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dandellion ];
};
}