My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libmpeg2/default.nix

22 lines
665 B

{ 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;
};
}