mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
24 lines
708 B
Nix
24 lines
708 B
Nix
{ 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 ];
|
|
};
|
|
}
|