1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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;
};
})

View file

@ -1242,6 +1242,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
languageEcmascript = callPackage ../development/libraries/haskell/language-ecmascript {};
languageGlsl = callPackage ../development/libraries/haskell/language-glsl {};
languageJava = callPackage ../development/libraries/haskell/language-java {};
languageJavascript = callPackage ../development/libraries/haskell/language-javascript {};