mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
23 lines
665 B
Nix
23 lines
665 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.1";
|
|
pname = "libmpeg2";
|
|
|
|
src = fetchurl {
|
|
url = "http://libmpeg2.sourceforge.net/files/${pname}-${version}.tar.gz";
|
|
sha256 = "1m3i322n2fwgrvbs1yck7g5md1dbg22bhq5xdqmjpz5m7j4jxqny";
|
|
};
|
|
|
|
# Otherwise clang fails with 'duplicate symbol ___sputc'
|
|
buildFlags = lib.optional 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 = lib.licenses.gpl2;
|
|
maintainers = with lib.maintainers; [ ];
|
|
platforms = with lib.platforms; unix;
|
|
};
|
|
}
|