mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 10:56:53 +00:00
44 lines
1 KiB
Nix
44 lines
1 KiB
Nix
|
{ stdenv, fetchsvn, autoconf, automake, libtool, m4, pkgconfig, makeWrapper, SDL2 }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "smpeg2-svn${version}";
|
||
|
version = "412";
|
||
|
|
||
|
src = fetchsvn {
|
||
|
url = svn://svn.icculus.org/smpeg/trunk;
|
||
|
rev = version;
|
||
|
sha256 = "1irf2d8f150j8cx8lbb0pz1rijap536crsz0mw871xrh6wd2fd96";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
./gcc6.patch
|
||
|
./sdl2.patch
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [ autoconf automake pkgconfig makeWrapper ];
|
||
|
|
||
|
buildInputs = [ SDL2 ];
|
||
|
|
||
|
preConfigure = ''
|
||
|
sh autogen.sh
|
||
|
'';
|
||
|
|
||
|
postInstall = ''
|
||
|
sed -e 's,#include "\(SDL.*.h\)",#include <SDL2/\1>,' -i $out/include/smpeg2/*.h
|
||
|
|
||
|
wrapProgram $out/bin/smpeg2-config \
|
||
|
--prefix PATH ":" "${pkgconfig}/bin" \
|
||
|
--prefix PKG_CONFIG_PATH ":" "${SDL2.dev}/lib/pkgconfig"
|
||
|
'';
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = http://icculus.org/smpeg/;
|
||
|
description = "SDL2 MPEG Player Library";
|
||
|
license = licenses.lgpl2;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = with maintainers; [ orivej ];
|
||
|
};
|
||
|
}
|