2013-09-02 12:20:17 +01:00
|
|
|
{ cabal, binary, HUnit, minimorph, testFramework
|
|
|
|
, testFrameworkHunit, text
|
2013-02-24 21:09:07 +00:00
|
|
|
}:
|
2012-12-12 10:39:17 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "miniutter";
|
2014-03-03 10:53:00 +00:00
|
|
|
version = "0.4.3.0";
|
|
|
|
sha256 = "0hslks4vr1738pczgzzcl0mrb9jqs1986vjgw4xpvzz9p3ki1n50";
|
2013-09-02 12:20:17 +01:00
|
|
|
buildDepends = [ binary minimorph text ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ HUnit testFramework testFrameworkHunit text ];
|
2012-12-12 10:39:17 +00: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;
|
|
|
|
};
|
|
|
|
})
|