mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
haskell-word-trie: new package
This commit is contained in:
parent
5f9b76da63
commit
464d3914f4
18
pkgs/development/libraries/haskell/word-trie/default.nix
Normal file
18
pkgs/development/libraries/haskell/word-trie/default.nix
Normal 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 ];
|
||||
};
|
||||
})
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user