haskell-stringprep: add version 0.1.5

This commit is contained in:
Peter Simons
2013-02-24 22:17:30 +01:00
parent 15ff301d63
commit e82f5c750e
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,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;
};
})