haskell-language-glsl: add version 0.0.2

This commit is contained in:
Peter Simons
2014-05-21 16:18:33 +02:00
parent 7685754f0f
commit 548cce8826
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{ cabal, HUnit, parsec, prettyclass }:
cabal.mkDerivation (self: {
pname = "language-glsl";
version = "0.0.2";
sha256 = "1ixgivyc5kqjg83rymrjs1mvypvqrczmj6dhn3dbw2a9lhrvljsz";
isLibrary = true;
isExecutable = true;
buildDepends = [ HUnit parsec prettyclass ];
meta = {
description = "GLSL abstract syntax tree, parser, and pretty-printer";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})