haskell-case-insensitive: added version 0.3.0.1 (and dropped obsolete 0.2.0.2)

svn path=/nixpkgs/trunk/; revision=28533
This commit is contained in:
Peter Simons
2011-08-13 13:57:13 +00:00
parent d2dc7cece3
commit 123fd3fecf
2 changed files with 6 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
{ cabal, text }:
{ cabal, hashable, text }:
cabal.mkDerivation (self: {
pname = "case-insensitive";
version = "0.2.0.2";
sha256 = "0qn2scaxxbqi4770nwvcmb1ldj0ipa2ljxcavcn0kv48xzs519l7";
buildDepends = [ text ];
version = "0.3.0.1";
sha256 = "0aaj7avg3rd2bvjjcny7wjdif60ikk7q49896g12jnczi5ba97ml";
buildDepends = [ hashable text ];
meta = {
description = "Case insensitive string comparison";
license = self.stdenv.lib.licenses.bsd3;