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:
parent
4fbd9acbaf
commit
9a96a358f0
|
@ -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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue