mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
haskell-haskell-token-utils: add version 0.0.0.2
This commit is contained in:
parent
3d7388cee5
commit
023b9094aa
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user