3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/markdown-unlit/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

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;
};
})