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