haskell-word-trie: new package

This commit is contained in:
Mateusz Kowalczyk 2014-10-14 17:23:00 +01:00
parent 5f9b76da63
commit 464d3914f4
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, binary, derive, hspec, QuickCheck }:
cabal.mkDerivation (self: {
pname = "word-trie";
version = "0.2.0.4";
sha256 = "0qgljhl2pj54mhsan9w6gchf3l94rs2c5bi9f93q1nz55va1027f";
buildDepends = [ binary derive ];
testDepends = [ binary derive hspec QuickCheck ];
meta = {
homepage = "https://github.com/yi-editor/word-trie";
description = "Implementation of a finite trie over words";
license = self.stdenv.lib.licenses.gpl2;
platforms = self.ghc.meta.platforms;
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
};
})

View File

@ -3084,6 +3084,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
ooPrototypes = callPackage ../development/libraries/haskell/oo-prototypes {};
wordTrie = callPackage ../development/libraries/haskell/word-trie {};
yi = callPackage ../applications/editors/yi/yi.nix {
vty = self.vty_4_7_5;
};