2013-09-02 11:20:17 +00: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";
|
2013-09-02 11:20:17 +00:00
|
|
|
version = "0.4.2";
|
|
|
|
sha256 = "00027aqxa0631v3n1jsv4aj9kf39s5yivi3dl573s5nj0wibj008";
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|