16 lines
496 B
Nix
16 lines
496 B
Nix
{ cabal, hashable, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "case-insensitive";
|
|
version = "0.4.0.3";
|
|
sha256 = "1lpfxfwfxiimvh5nxqrnjqj2687dp7rmv9wkrpmw2zm5wkxwcmzf";
|
|
buildDepends = [ hashable text ];
|
|
meta = {
|
|
homepage = "https://github.com/basvandijk/case-insensitive";
|
|
description = "Case insensitive string comparison";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|