1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/GLUtil/default.nix

17 lines
463 B
Nix
Raw Normal View History

2014-05-26 22:59:13 +01:00
{ cabal, cpphs, JuicyPixels, linear, OpenGL, OpenGLRaw, vector }:
cabal.mkDerivation (self: {
pname = "GLUtil";
version = "0.7.4";
sha256 = "0l1w0k3q5g22y90w5frljqh1v4jb7gjzb3scg79zp42pc9v3h4l5";
buildDepends = [
cpphs JuicyPixels linear OpenGL OpenGLRaw vector
];
buildTools = [ cpphs ];
meta = {
description = "Miscellaneous OpenGL utilities";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})