Files
nixpkgs/pkgs/by-name/xi/xine-lib/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

105 lines
1.5 KiB
Nix

{
lib,
aalib,
alsa-lib,
autoreconfHook,
fetchhg,
ffmpeg,
flac,
libGL,
libGLU,
libX11,
libXext,
libXinerama,
libXv,
libcaca,
libcdio,
libmng,
libmpcdec,
libpulseaudio,
libtheora,
libv4l,
libvorbis,
libxcb,
ncurses,
perl,
pkg-config,
speex,
stdenv,
vcdimager,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "xine-lib";
version = "1.2.13-unstable-2024-06-29";
src = fetchhg {
url = "http://hg.code.sf.net/p/xine/xine-lib-1.2";
rev = "53845e2f6b1f3b69328de5c030c0ab27eb8f043d";
hash = "sha256-O5lIYmNC2TpoY4QbPMsDWxNOoxdw61967Q4QG9d/+Bg=";
};
outputs = [
"out"
"dev"
"man"
];
nativeBuildInputs = [
autoreconfHook
perl
pkg-config
];
buildInputs = [
aalib
alsa-lib
ffmpeg
flac
libGL
libGLU
libX11
libX11
libXext
libXext
libXinerama
libXinerama
libXv
libXv
libcaca
libcdio
libmng
libmpcdec
libpulseaudio
libtheora
libv4l
libvorbis
libxcb
libxcb
ncurses
perl
speex
vcdimager
zlib
];
env.NIX_LDFLAGS = "-lxcb-shm";
enableParallelBuilding = true;
strictDeps = true;
meta = {
homepage = "https://xine.sourceforge.net/";
description = "High-performance, portable and reusable multimedia playback engine";
license = with lib.licenses; [
gpl2Plus
lgpl2Plus
];
# No useful mainProgram
maintainers = [ ];
platforms = lib.platforms.linux;
};
})