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

19 lines
491 B
Nix
Raw Normal View History

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