2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, HUnit, minimorph, testFramework, testFrameworkHunit, text
|
|
|
|
}:
|
2012-12-12 11:39:17 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "miniutter";
|
|
|
|
version = "0.4.0";
|
|
|
|
sha256 = "1l275aad8svrqp22jv9s0mmlam7wbdlf6m4m97658rm8ks4j2mbx";
|
|
|
|
buildDepends = [ minimorph text ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ HUnit testFramework testFrameworkHunit text ];
|
2012-12-12 11:39:17 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/Mikolaj/miniutter";
|
|
|
|
description = "Simple English clause creation from arbitrary words";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|