nixpkgs/pkgs/development/ocaml-modules/fdkaac/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
626 B
Nix
Raw Normal View History

2020-08-30 06:31:07 +01:00
{ lib, fetchFromGitHub, buildDunePackage, dune-configurator
, fdk_aac
}:
buildDunePackage rec {
pname = "fdkaac";
version = "0.3.2";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-fdkaac";
rev = version;
sha256 = "10i6hsjkrpw7zgx99zvvka3sapd7zy53k7z4b6khj9rdrbrgznv8";
};
useDune2 = true;
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ fdk_aac ];
meta = {
description = "OCaml binding for the fdk-aac library";
inherit (src.meta) homepage;
license = lib.licenses.gpl2Only;
maintainers = [ lib.maintainers.vbgl lib.maintainers.dandellion ];
2020-08-30 06:31:07 +01:00
};
}