2012-02-23 12:33:39 +01:00
|
|
|
{ cabal, ConfigFile, filepath, HStringTemplate, HUnit, pandoc
|
|
|
|
, pandocTypes, SHA, testFramework, testFrameworkHunit, time
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "mathblog";
|
2012-02-27 11:11:56 +01:00
|
|
|
version = "0.5";
|
|
|
|
sha256 = "01iyzrwscqirhcr4622d0n16mr4p54qbvg5m2a0ns36j59xfd79g";
|
2012-02-23 12:33:39 +01:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
ConfigFile filepath HStringTemplate HUnit pandoc pandocTypes SHA
|
|
|
|
testFramework testFrameworkHunit time
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
description = "A program for creating and managing a static weblog with LaTeX math and function graphs";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-02-23 12:33:39 +01:00
|
|
|
};
|
|
|
|
})
|