1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00

haskell-markdown-unlit: add version 0.2.0.1

This commit is contained in:
Peter Simons 2013-02-24 22:16:38 +01:00
parent 4fbd9acbaf
commit 9a96a358f0
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ 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;
};
})

View file

@ -1203,6 +1203,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
maccatcher = callPackage ../development/libraries/haskell/maccatcher {};
markdownUnlit = callPackage ../development/libraries/haskell/markdown-unlit {};
mathFunctions = callPackage ../development/libraries/haskell/math-functions {};
mainlandPretty = callPackage ../development/libraries/haskell/mainland-pretty {};