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.

26 lines
609 B
Nix
Raw Normal View History

2020-08-30 07:31:07 +02:00
{ lib, fetchFromGitHub, buildDunePackage, dune-configurator
, fdk_aac
}:
buildDunePackage rec {
pname = "fdkaac";
2023-01-21 07:29:10 +01:00
version = "0.3.3";
2020-08-30 07:31:07 +02:00
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-fdkaac";
2023-01-21 07:29:10 +01:00
rev = "v${version}";
hash = "sha256-cTPPQKBq0EFo35eK7TXlszbodHYIg1g7v+yQ/rG7Y9I=";
2020-08-30 07:31:07 +02:00
};
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 07:31:07 +02:00
};
}