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