3
0
Fork 0
forked from mirrors/nixpkgs

haskell-language-glsl: update to version 0.1.0

This commit is contained in:
Peter Simons 2014-08-20 11:47:03 +02:00
parent 341831d6a7
commit 75e56df256

View file

@ -1,14 +1,19 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, HUnit, parsec, prettyclass }:
{ cabal, HUnit, parsec, prettyclass, testFramework
, testFrameworkHunit
}:
cabal.mkDerivation (self: {
pname = "language-glsl";
version = "0.0.2";
sha256 = "1ixgivyc5kqjg83rymrjs1mvypvqrczmj6dhn3dbw2a9lhrvljsz";
version = "0.1.0";
sha256 = "0jr6jwxsfpmnjrnaary37s2i47akq665fnyvv37cp6j928srjizf";
isLibrary = true;
isExecutable = true;
buildDepends = [ HUnit parsec prettyclass ];
buildDepends = [ parsec prettyclass ];
testDepends = [
HUnit parsec prettyclass testFramework testFrameworkHunit
];
meta = {
description = "GLSL abstract syntax tree, parser, and pretty-printer";
license = self.stdenv.lib.licenses.bsd3;