summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/word-trie/default.nix
blob: f817254aa629c12e8a3fce72ea900292ba49f6fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ];
  };
})