zfs_unstable: 2.3.0-rc3 -> 2.3.0-rc4 (#365045)
[NixPkgs.git] / pkgs / development / ocaml-modules / taglib / default.nix
blob58bfb599272a7106a0e4fd95f9fd279e78af2bca
2   lib,
3   buildDunePackage,
4   fetchFromGitHub,
5   dune-configurator,
6   pkg-config,
7   taglib,
8   zlib,
9 }:
11 buildDunePackage rec {
12   pname = "taglib";
13   version = "0.3.10";
15   src = fetchFromGitHub {
16     owner = "savonet";
17     repo = "ocaml-taglib";
18     rev = "v${version}";
19     sha256 = "sha256-tAvzVr0PW1o0kKFxdi/ks4obqnyBm8YfiiFupXZkUho=";
20   };
22   minimalOCamlVersion = "4.05.0"; # Documented version 4.02.0. 4.05.0 actually required.
24   nativeBuildInputs = [ pkg-config ];
25   buildInputs = [ dune-configurator ];
26   propagatedBuildInputs = [
27     taglib
28     zlib
29   ];
31   meta = with lib; {
32     homepage = "https://github.com/savonet/ocaml-taglib";
33     description = "Bindings for the taglib library which provides functions for reading tags in headers of audio files";
34     license = with licenses; [
35       lgpl21Plus
36       "link-exception"
37     ]; # GNU Library Public License 2 Linking Exception
38     maintainers = with maintainers; [ dandellion ];
39   };