nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5 dune-configurator,
6 pkg-config,
7 ogg,
8 flac,
9}:
10
11buildDunePackage {
12 pname = "flac";
13 inherit (ogg) version src;
14
15 nativeBuildInputs = [ pkg-config ];
16 buildInputs = [ dune-configurator ];
17 propagatedBuildInputs = [
18 ogg
19 flac.dev
20 ];
21
22 meta = {
23 homepage = "https://github.com/savonet/ocaml-flac";
24 description = "Bindings for flac";
25 license = lib.licenses.gpl2Plus;
26 maintainers = with lib.maintainers; [ dandellion ];
27 };
28}