18 lines
563 B
Nix
18 lines
563 B
Nix
|
{ cabal, deepseq, hashable, HUnit, testFramework
|
||
|
, testFrameworkHunit, text
|
||
|
}:
|
||
|
|
||
|
cabal.mkDerivation (self: {
|
||
|
pname = "case-insensitive";
|
||
|
version = "1.2.0.0";
|
||
|
sha256 = "0ybdmqaqh9hdl3dl5kx8qhs4b67g78fhnkqnd3y2lpgqjvhnbzp4";
|
||
|
buildDepends = [ deepseq hashable text ];
|
||
|
testDepends = [ HUnit testFramework testFrameworkHunit 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;
|
||
|
};
|
||
|
})
|