text-binary: add haskell package

This commit is contained in:
Nikolay Amiantov 2014-10-30 00:47:51 +03:00
parent e96df6c6f9
commit 5ce584f81c
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, binary, text }:
cabal.mkDerivation (self: {
pname = "text-binary";
version = "0.1.0";
sha256 = "0wc501j8hqspnhf4d1hyb18f1wgc4kl2qx1b5s4bkxv0dfbwrk6z";
buildDepends = [ binary text ];
meta = {
homepage = "https://github.com/kawu/text-binary";
description = "Binary instances for text types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -2648,6 +2648,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
text_1_2_0_0 = callPackage ../development/libraries/haskell/text/1.2.0.0.nix {};
text = self.text_1_2_0_0;
textBinary = callPackage ../development/libraries/haskell/text-binary {};
textFormat = callPackage ../development/libraries/haskell/text-format {};
textIcu = callPackage ../development/libraries/haskell/text-icu {};