2013-01-30 10:29:39 +00:00
|
|
|
{ cabal, deepseq, hashable, text }:
|
2011-07-07 20:08:51 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 20:08:51 +01:00
|
|
|
pname = "case-insensitive";
|
2013-01-30 10:29:39 +00:00
|
|
|
version = "1.0";
|
|
|
|
sha256 = "1x437b5yyh930a5dr642lvfdgpx12w4ms70whiw1ffjjhssb88zk";
|
|
|
|
buildDepends = [ deepseq hashable text ];
|
2011-07-07 20:08:51 +01:00
|
|
|
meta = {
|
2011-12-02 11:47:03 +00:00
|
|
|
homepage = "https://github.com/basvandijk/case-insensitive";
|
2011-07-07 20:08:51 +01:00
|
|
|
description = "Case insensitive string comparison";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 20:08:51 +01:00
|
|
|
};
|
|
|
|
})
|