bc7c4c1951
- base16-bytestring: updated to version 0.1.1.5 - base64-bytestring: updated to version 0.1.1.3 - bloomfilter: updated to version 1.2.6.10 - cryptocipher: updated to version 0.3.5 - gtk: updated to version 0.12.3.1 - http-conduit: updated to version 1.4.1.9 - snap-core: updated to version 0.9.0 - snap-server: updated to version 0.9.0 - stringsearch: updated to version 0.3.6.3 - text: updated to version 0.11.2.2 - void: updated to version 0.5.6 svn path=/nixpkgs/trunk/; revision=34542
15 lines
459 B
Nix
15 lines
459 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "base16-bytestring";
|
|
version = "0.1.1.5";
|
|
sha256 = "1fgd3zdzjfry6jaz8hwhim0p2c35l73cxxambh0ff7p5fqjrlwym";
|
|
meta = {
|
|
homepage = "http://github.com/bos/base16-bytestring";
|
|
description = "Fast base16 (hex) encoding and decoding for ByteStrings";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|