4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{lib, stdenv, fetchurl, pkgconfig, xorg, libpng, xineLib, readline, ncurses, curl
|
|
, lirc, shared-mime-info, libjpeg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xine-ui-0.99.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/xine/${name}.tar.xz";
|
|
sha256 = "10zmmss3hm8gjjyra20qhdc0lb1m6sym2nb2w62bmfk8isfw9gsl";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig shared-mime-info ];
|
|
|
|
buildInputs =
|
|
[ xineLib libpng readline ncurses curl lirc libjpeg
|
|
xorg.xlibsWrapper xorg.libXext xorg.libXv xorg.libXxf86vm xorg.libXtst xorg.xorgproto
|
|
xorg.libXinerama xorg.libXi xorg.libXft
|
|
];
|
|
|
|
patchPhase = ''sed -e '/curl\/types\.h/d' -i src/xitk/download.c'';
|
|
|
|
configureFlags = [ "--with-readline=${readline.dev}" ];
|
|
|
|
LIRC_CFLAGS="-I${lirc}/include";
|
|
LIRC_LIBS="-L ${lirc}/lib -llirc_client";
|
|
#NIX_LDFLAGS = "-lXext -lgcc_s";
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.xine-project.org/";
|
|
description = "Xlib-based interface to Xine, a video player";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|