21f17d69f6
Build-tested on x86_64 Linux & Mac.
23 lines
699 B
Nix
23 lines
699 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.1";
|
|
name = "libmpeg2-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://libmpeg2.sourceforge.net/files/${name}.tar.gz";
|
|
sha256 = "1m3i322n2fwgrvbs1yck7g5md1dbg22bhq5xdqmjpz5m7j4jxqny";
|
|
};
|
|
|
|
# Otherwise clang fails with 'duplicate symbol ___sputc'
|
|
buildFlags = stdenv.lib.optionalString stdenv.isDarwin "CFLAGS=-std=gnu89";
|
|
|
|
meta = {
|
|
homepage = http://libmpeg2.sourceforge.net/;
|
|
description = "A free library for decoding mpeg-2 and mpeg-1 video streams";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
};
|
|
}
|