nixpkgs/pkgs/development/libraries/haskell/word-trie/default.nix
2014-10-14 18:45:26 +01:00

19 lines
643 B
Nix

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