biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / flac / default.nix
blobc30236e0e2c1e8a2dac7b6800fe5e86b6c48945b
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, pkg-config, ogg, flac }:
3 buildDunePackage rec {
4   pname = "flac";
5   version = "0.5.0";
7   src = fetchFromGitHub {
8     owner = "savonet";
9     repo = "ocaml-flac";
10     rev = "v${version}";
11     sha256 = "sha256-HRRQd//e6Eh2HuyO+U00ILu5FoBT9jf/nRJzDOie70A=";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ dune-configurator ];
16   propagatedBuildInputs = [ ogg flac.dev ];
18   meta = with lib; {
19     homepage = "https://github.com/savonet/ocaml-flac";
20     description = "Bindings for flac";
21     license = licenses.gpl2Only;
22     maintainers = with maintainers; [ dandellion ];
23   };