3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
469 B
Nix
16 lines
469 B
Nix
{ cabal, hspec, QuickCheck, silently, stringbuilder }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "markdown-unlit";
|
|
version = "0.2.0.1";
|
|
sha256 = "1bc3vcifv2xcddh8liq380c6sxarrs5pf21pfs9i4dx9rfl3hvhq";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
testDepends = [ hspec QuickCheck silently stringbuilder ];
|
|
meta = {
|
|
description = "Literate Haskell support for Markdown";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|