about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/string-conversions/default.nix
blob: efab2ee40bb4863cc3991a57804e7e59d0869bf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal, text, utf8String }:

cabal.mkDerivation (self: {
  pname = "string-conversions";
  version = "0.3.0.2";
  sha256 = "0jcm0vv0ll74zfc7s2l8qpqpbfnkv7ir9d1kg68m6b0f9sq0dgng";
  buildDepends = [ text utf8String ];
  meta = {
    description = "Simplifies dealing with different types for strings";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})