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