ocamlPackages.taglib: init at 0.3.9

This commit is contained in:
Daniel Olsen 2021-10-30 22:18:14 +02:00
parent 89a381788e
commit c035e81dac
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, pkg-config, taglib, zlib }:
buildDunePackage rec {
pname = "taglib";
version = "0.3.9";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-taglib";
rev = "v${version}";
sha256 = "sha256-n8Vv8Vepvhx7anZdWIdBfw+HSQShKWjNe6l0gqRRsSs=";
};
minimalOCamlVersion = "4.05.0"; # Documented version 4.02.0. 4.05.0 actually required.
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ taglib zlib ];
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-taglib";
description = "Bindings for the taglib library which provides functions for reading tags in headers of audio files";
license = with licenses; [ lgpl21Plus "link-exception" ]; # GNU Library Public License 2 Linking Exception
maintainers = with maintainers; [ dandellion ];
};
}

View file

@ -1393,6 +1393,10 @@ let
stringext = callPackage ../development/ocaml-modules/stringext { };
taglib = callPackage ../development/ocaml-modules/taglib {
inherit (pkgs) taglib;
};
tcslib = callPackage ../development/ocaml-modules/tcslib { };
telegraml = callPackage ../development/ocaml-modules/telegraml { };