Stating me as maintainer of packages I maintain.

svn path=/nixpkgs/trunk/; revision=17583
This commit is contained in:
Lluís Batlle i Rossell 2009-10-01 20:18:17 +00:00
parent 62aad312ad
commit bd988d052b
4 changed files with 17 additions and 3 deletions

View File

@ -32,5 +32,13 @@ stdenv.mkDerivation {
'';
buildInputs = [ cmake qt4 ];
meta = {
homepage = "http://www.paraview.org/";
description = "3D Data analysis and visualization application";
license = "free";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -14,5 +14,7 @@ stdenv.mkDerivation {
meta = {
description = "Open CASCADE Technology, libraries for 3D modeling and numerical simulation";
homepage = http://www.opencascade.org/;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -12,5 +12,7 @@ stdenv.mkDerivation {
description = "Open source libraries for 3D computer graphics, image processing and visualization";
homepage = http://www.vtk.org/;
license = "BSD";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -1,10 +1,10 @@
{ stdenv, fetchurl, unzip, cmake, libtiff, expat, zlib, libpng, libjpeg }:
stdenv.mkDerivation {
name = "vxl-1.12.0";
name = "vxl-1.13.0";
src = fetchurl {
url = mirror://sourceforge/vxl/vxl-1.12.0.zip;
sha256 = "11nwa37g42l81xv18s2q2jflc4vr2ncsm7wn7yv269wfwxcjhnlc";
url = mirror://sourceforge/vxl/vxl-1.13.0.zip;
sha256 = "05xk9dfkqsznp1dic8rcsdhgdp12bikwx1zpci0w3s20fs8q8nn1";
};
buildInputs = [ cmake unzip libtiff expat zlib libpng libjpeg ];
@ -19,5 +19,7 @@ stdenv.mkDerivation {
description = "C++ Libraries for Computer Vision Research and Implementation";
homepage = http://vxl.sourceforge.net/;
license = "VXL License";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}