Files
nixpkgs/pkgs/by-name/li/libvlcpp/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

41 lines
843 B
Nix

{
lib,
stdenv,
fetchFromGitLab,
autoreconfHook,
pkg-config,
libvlc,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libvlcpp";
version = "0.1.0-unstable-2024-02-04";
src = fetchFromGitLab {
domain = "code.videolan.org";
owner = "videolan";
repo = "libvlcpp";
rev = "44c1f48e56a66c3f418175af1e1ef3fd1ab1b118";
hash = "sha256-nnS4DMz/2VciCrhOBGRb1+kDbxj+ZOnEtQmzs/TJ870=";
};
nativeBuildInputs = [
pkg-config
autoreconfHook
];
propagatedBuildInputs = [
libvlc
];
doCheck = true;
meta = {
description = "Header-only C++ bindings for the libvlc crossplatform multimedia API";
homepage = "https://code.videolan.org/videolan/libvlcpp";
maintainers = with lib.maintainers; [ l33tname ];
platforms = lib.platforms.all;
license = lib.licenses.lgpl21Only;
};
})