2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, hashable, 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";
|
2012-08-20 01:25:18 -07:00
|
|
|
version = "0.4.0.3";
|
|
|
|
sha256 = "1lpfxfwfxiimvh5nxqrnjqj2687dp7rmv9wkrpmw2zm5wkxwcmzf";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ hashable 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;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 12:08:51 -07:00
|
|
|
};
|
|
|
|
})
|