Adding yasm, and making x264 and xvid codecs be compiled with their assembly code

svn path=/nixpkgs/trunk/; revision=21470
This commit is contained in:
Lluís Batlle i Rossell
2010-04-30 21:58:47 +00:00
parent b3870f0148
commit 1215f3a7a4
4 changed files with 28 additions and 5 deletions
@@ -0,0 +1,16 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "yasm-2.05.01";
src = fetchurl {
url = http://www.tortall.net/projects/yasm/releases/yasm-1.0.0.tar.gz;
sha256 = "0nd95r9y5r3p9mvdyj1yhvlz9zjw0id1g470c7i1p3p0x0n6zc06";
};
meta = {
homepage = http://www.tortall.net/projects/yasm/;
description = "Complete rewrite of the NASM assembler";
license = "BSD";
};
}