evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / faad / default.nix
bloba2705a27d929e0149fb7378d23e1dadcdc15dbdc
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, faad2, pkg-config }:
3 buildDunePackage rec {
4   pname = "faad";
5   version = "0.5.1";
7   src = fetchFromGitHub {
8     owner = "savonet";
9     repo = "ocaml-faad";
10     rev = "v${version}";
11     sha256 = "sha256-3ayKZhgJAgsoOqn0InSrM5f3TImRHOQMtWETICo4t3o=";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ dune-configurator ];
16   propagatedBuildInputs = [ faad2 ];
18   meta = with lib; {
19     homepage = "https://github.com/savonet/ocaml-faad";
20     description = "Bindings for the faad library which provides functions for decoding AAC audio files";
21     license = licenses.gpl2Plus;
22     maintainers = with maintainers; [ dandellion ];
23   };