Merge pull request #6402 from codyopel/xavs

xavs: add package
This commit is contained in:
Arseniy Seroka 2015-02-17 23:42:01 +03:00
commit 0e63ac0acf
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ stdenv, fetchsvn }:
stdenv.mkDerivation rec {
name = "xavs-${version}";
version = "55";
src = fetchsvn {
url = "https://svn.code.sf.net/p/xavs/code/trunk";
rev = "${version}";
sha256 = "0drw16wm95dqszpl7j33y4gckz0w0107lnz6wkzb66f0dlbv48cf";
};
patchPhase = ''
patchShebangs configure
patchShebangs config.sub
patchShebangs version.sh
patchShebangs tools/countquant_xavs.pl
patchShebangs tools/patcheck
patchShebangs tools/regression-test.pl
patchShebangs tools/xavs-format
'';
configureFlags = [
"--enable-pic"
"--enable-shared"
# Bug preventing compilation with assembly enabled
"--disable-asm"
];
meta = with stdenv.lib; {
description = "AVS encoder and decoder";
homepage = http://xavs.sourceforge.net/;
license = licenses.lgpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ codyopel ];
};
}

View file

@ -7472,6 +7472,8 @@ let
xapianBindings10 = callPackage ../development/libraries/xapian/bindings/1.0.x.nix { # TODO perl php Java, tcl, C#, python
};
xavs = callPackage ../development/libraries/xavs { };
Xaw3d = callPackage ../development/libraries/Xaw3d { };
xbase = callPackage ../development/libraries/xbase { };