about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/faad/default.nix
blob: a2705a27d929e0149fb7378d23e1dadcdc15dbdc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, faad2, pkg-config }:

buildDunePackage rec {
  pname = "faad";
  version = "0.5.1";

  src = fetchFromGitHub {
    owner = "savonet";
    repo = "ocaml-faad";
    rev = "v${version}";
    sha256 = "sha256-3ayKZhgJAgsoOqn0InSrM5f3TImRHOQMtWETICo4t3o=";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ dune-configurator ];
  propagatedBuildInputs = [ faad2 ];

  meta = with lib; {
    homepage = "https://github.com/savonet/ocaml-faad";
    description = "Bindings for the faad library which provides functions for decoding AAC audio files";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ dandellion ];
  };
}