mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
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
455 B
Nix
15 lines
455 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "base64-bytestring";
|
|
version = "0.1.1.3";
|
|
sha256 = "0gyms4nf5j9ick1l5ys9h7h0nxpsi5vgs4dbynrqyhm9yd09cscg";
|
|
meta = {
|
|
homepage = "https://github.com/bos/base64-bytestring";
|
|
description = "Fast base64 encoding and deconding for ByteStrings";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|