mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
haskell-stringprep: update to version 1.0.0
This commit is contained in:
parent
b96626a22e
commit
4512d1defb
1 changed files with 8 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue