summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/bytestring-trie/default.nix
blob: 1dc56c420b671b72f06155e4a133add9a7eabad3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, binary }:

cabal.mkDerivation (self: {
  pname = "bytestring-trie";
  version = "0.2.3";
  sha256 = "1zb4s7fd951swc648szrpx0ldailmdinapgbcg1zajb5c5jq57ga";
  buildDepends = [ binary ];
  meta = {
    homepage = "http://code.haskell.org/~wren/";
    description = "An efficient finite map from (byte)strings to values";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})