3e0ac9b040
Several changes, some highlights: * Structure of haskell-packages.nix updated. It's now easier to select different default versions of packages for different versions of GHC. * GHC 7.0.2 is now default. * Haskell Platform 2011.2.0.0 has been added and is now default. * Several packages have been updated (gtk2hs, gitit, xmonad, darcs, ...). * Some old packages have been removed. svn path=/nixpkgs/trunk/; revision=26288
13 lines
407 B
Nix
13 lines
407 B
Nix
{cabal, OpenGL, glut, libSM, libICE, libXmu, libXi, mesa}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "GLUT";
|
|
version = "2.1.2.1"; # Haskell Platform 2010.1.0.0, 2010.2.0.0, 2011.2.0.0
|
|
sha256 = "0r3js5i468lqlsnvb04iw6gdl81gs3cgqids3xpi4p5qpynbyc02";
|
|
propagatedBuildInputs = [OpenGL glut libSM libICE libXmu libXi mesa];
|
|
meta = {
|
|
description = "A binding for the OpenGL Utility Toolkit";
|
|
};
|
|
})
|
|
|