Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
1.0 KiB
Nix
44 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
dune-configurator,
|
|
pkg-config,
|
|
glib,
|
|
gst_all_1,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "gstreamer";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "savonet";
|
|
repo = "ocaml-gstreamer";
|
|
rev = "v${version}";
|
|
sha256 = "0y8xi1q0ld4hrk96bn6jfh9slyjrxmnlhm662ynacp3yzalp8jji";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ dune-configurator ];
|
|
propagatedBuildInputs = [
|
|
glib.dev
|
|
gst_all_1.gstreamer.dev
|
|
gst_all_1.gst-plugins-base
|
|
];
|
|
|
|
CFLAGS_COMPILE = [
|
|
"-I${glib.dev}/include/glib-2.0"
|
|
"-I${glib.out}/lib/glib-2.0/include"
|
|
"-I${gst_all_1.gst-plugins-base.dev}/include/gstreamer-1.0"
|
|
"-I${gst_all_1.gstreamer.dev}/include/gstreamer-1.0"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/savonet/ocaml-gstreamer";
|
|
description = "Bindings for the GStreamer library which provides functions for playning and manipulating multimedia streams";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ dandellion ];
|
|
};
|
|
}
|