Merge pull request #4880 from abbradar/text-binary

text-binary: add haskell package
This commit is contained in:
Peter Simons 2014-11-08 00:48:02 +01:00
commit 6d51e33197
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 {};