* Improved a bunch of "name" attributes (mostly missing version

numbers).

svn path=/nixpkgs/trunk/; revision=17991
This commit is contained in:
Eelco Dolstra
2009-10-28 14:06:56 +00:00
parent cbfbaf736a
commit f53195f29e
19 changed files with 105 additions and 97 deletions
@@ -1,23 +1,25 @@
args:
args.stdenv.mkDerivation {
name = "libQGLviewer";
{ stdenv, fetchurl, qt4 }:
src = args.fetchurl {
url = http://artis.imag.fr/Members/Gilles.Debunne/QGLViewer/src/libQGLViewer-2.2.6-3.tar.gz;
sha256 = "05vjl7af87dhzrdigm941by9c137g8wyca46h3pvhnmr4pgb0ic9";
stdenv.mkDerivation rec {
name = "libQGLViewer-2.3.4";
src = fetchurl {
url = "http://www.libqglviewer.com/src/${name}.tar.gz";
sha256 = "01b9x2n3v5x3zkky2bjpgbhn5bglqn4gd7x5j5p7y2dw0jnzz7j0";
};
buildInputs =(with args; [qt4]);
buildInputs = [ qt4 ];
buildPhase = "
cd QGLViewer
qmake PREFIX=\$out
make
";
buildPhase =
''
cd QGLViewer
qmake PREFIX=$out
make
'';
meta = {
description = "trackball-based 3D viewer qt widget including many useful features";
homepage = http://artis.imag.fr/Members/Gilles.Debunne/QGLViewer/installUnix.html;
license = "GPL2";
description = "trackball-based 3D viewer qt widget including many useful features";
homepage = http://artis.imag.fr/Members/Gilles.Debunne/QGLViewer/installUnix.html;
license = "GPL2";
};
}