haskell-stringprep: update to version 1.0.0

This commit is contained in:
Peter Simons 2014-01-08 12:31:50 +01:00
parent b96626a22e
commit 4512d1defb

View file

@ -1,10 +1,14 @@
{ cabal, ranges, text, textIcu }:
{ cabal, QuickCheck, tasty, tastyQuickcheck, tastyTh, text, textIcu
}:
cabal.mkDerivation (self: {
pname = "stringprep";
version = "0.1.5";
sha256 = "1a25b18kd1zx06gi677g3xvsm49izhhf26z2dfljkjfykf05kqmp";
buildDepends = [ ranges text textIcu ];
version = "1.0.0";
sha256 = "0ha4cvzdppd514xh9315v3nvrn1q4xd74gifdqpszw98hj2mw0b0";
buildDepends = [ text textIcu ];
testDepends = [
QuickCheck tasty tastyQuickcheck tastyTh text textIcu
];
meta = {
description = "Implements the \"StringPrep\" algorithm";
license = self.stdenv.lib.licenses.bsd3;