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

cabal.mkDerivation (self: {
  pname = "stringprep";
  version = "0.1.5";
  sha256 = "1a25b18kd1zx06gi677g3xvsm49izhhf26z2dfljkjfykf05kqmp";
  buildDepends = [ ranges text textIcu ];
  meta = {
    description = "Implements the \"StringPrep\" algorithm";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})