haskell-haskell-token-utils: add version 0.0.0.2

This commit is contained in:
Peter Simons 2014-07-07 11:21:22 +02:00
parent 3d7388cee5
commit 023b9094aa
2 changed files with 26 additions and 0 deletions

@ -0,0 +1,24 @@
{ cabal, Diff, dualTree, ghcMod, ghcPaths, ghcSybUtils
, haskellSrcExts, hspec, HUnit, monoidExtras, mtl, QuickCheck
, rosezipper, semigroups, syb
}:
cabal.mkDerivation (self: {
pname = "haskell-token-utils";
version = "0.0.0.2";
sha256 = "115lqddhjra3wjnj5n8gpm0iawf6m1l2ggjh2n8nbx6wjraghrrv";
buildDepends = [
dualTree ghcSybUtils haskellSrcExts monoidExtras mtl rosezipper
semigroups syb
];
testDepends = [
Diff dualTree ghcMod ghcPaths ghcSybUtils haskellSrcExts hspec
HUnit monoidExtras mtl QuickCheck rosezipper semigroups syb
];
meta = {
homepage = "https://github.com/alanz/haskell-token-utils";
description = "Utilities to tie up tokens to an AST";
license = self.stdenv.lib.licenses.publicDomain;
platforms = self.ghc.meta.platforms;
};
})

@ -1017,6 +1017,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
haskellSrcMeta = callPackage ../development/libraries/haskell/haskell-src-meta {};
haskellTokenUtils = callPackage ../development/libraries/haskell/haskell-token-utils {};
haskore = callPackage ../development/libraries/haskell/haskore {};
hastache = callPackage ../development/libraries/haskell/hastache {};