Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d65002aff596
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5664601fa285
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Sep 5, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5664601 View commit details
Showing with 29 additions and 0 deletions.
  1. +27 −0 pkgs/development/ocaml-modules/fdkaac/default.nix
  2. +2 −0 pkgs/top-level/ocaml-packages.nix
27 changes: 27 additions & 0 deletions pkgs/development/ocaml-modules/fdkaac/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ 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 ];
};

}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Original file line number Diff line number Diff line change
@@ -286,6 +286,8 @@ let

farfadet = callPackage ../development/ocaml-modules/farfadet { };

fdkaac = callPackage ../development/ocaml-modules/fdkaac { };

fiat-p256 = callPackage ../development/ocaml-modules/fiat-p256 { };

fieldslib_p4 = callPackage ../development/ocaml-modules/fieldslib { };