a30df95691
This change brings support for building and running the regressions test suites.
18 lines
617 B
Nix
18 lines
617 B
Nix
{ cabal, deepseq, hashable, HUnit, testFramework
|
|
, testFrameworkHunit, text
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "case-insensitive";
|
|
version = "1.0";
|
|
sha256 = "1x437b5yyh930a5dr642lvfdgpx12w4ms70whiw1ffjjhssb88zk";
|
|
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;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|