* mjpegtools 1.6.2

svn path=/nixpkgs/trunk/; revision=2429
This commit is contained in:
Rob Vermaas
2005-03-18 08:10:35 +00:00
parent 10e4887e50
commit 421d6ac92a
3 changed files with 49 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, libjpeg, libX11}:
stdenv.mkDerivation {
name = "mjpegtools-1.6.2";
src = fetchurl {
url = http://mesh.dl.sourceforge.net/sourceforge/mjpeg/mjpegtools-1.6.2.tar.gz ;
md5 = "01c0120b0182de67f182ef99ad855daa" ;
};
buildInputs = [libjpeg libX11];
patches = [./fix.patch];
}