2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, deepseq, hashable, HUnit, testFramework
|
|
|
|
, testFrameworkHunit, 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-05-12 14:42:30 +01:00
|
|
|
version = "1.0.0.1";
|
|
|
|
sha256 = "1yp8895qvxcmai0hvxdq77qss9cia2f9fyn6rm0hln3rcx8n53xm";
|
2013-01-30 10:29:39 +00:00
|
|
|
buildDepends = [ deepseq hashable text ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ HUnit testFramework testFrameworkHunit 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;
|
2011-07-07 20:08:51 +01:00
|
|
|
};
|
|
|
|
})
|