* More cleanup.

svn path=/nixpkgs/trunk/; revision=22795
This commit is contained in:
Eelco Dolstra
2010-07-28 15:35:01 +00:00
parent 27fe0c57f3
commit 749b8607ca
37 changed files with 329 additions and 329 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, mesa, x11, libXmu, libXi }:
stdenv.mkDerivation {
name = "glew-1.5.2";
@@ -8,13 +8,13 @@ stdenv.mkDerivation {
sha256 = "0dh5wpfq7aaldkiwcqmm9w59c2qcglkjv8zazmnm8n5771n3caj8";
};
buildInputs = [mesa x11 libXmu libXi];
buildInputs = [ mesa x11 libXmu libXi ];
installPhase = "GLEW_DEST=\$out make install";
meta = {
description = "cross-platform open-source C/C++ extension loading library";
description = "Cross-platform open-source C/C++ extension loading library";
homepage = http://glew.sourceforge.net/;
license = ["BSD" "GLX" "SGI-B" "GPL2"]; # License description copied from gentoo-1.4.0
};
installPhase="GLEW_DEST=\$out make install";
}