Skip to content
Snippets Groups Projects
Commit 328b0c05 authored by Daniel Firth's avatar Daniel Firth
Browse files

markdown-unlit: init at 0.5.1

parent 5bc9aca1
No related merge requests found
......@@ -389,6 +389,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "lucid" "2.11.1"
, callHackage "lukko" "0.1.1.3"
, callHackage "net-mqtt" "0.8.2.2"
, callHackage "markdown-unlit" "0.5.1"
, callHackage "math-functions" "0.3.4.2"
, callHackage "megaparsec" "9.2.2"
, callHackage "memory" "0.18.0"
......
......@@ -505,6 +505,8 @@ final: prev: with pkgs.haskell.lib; {
lukko = prev.callPackage (./pkgs/lukko.nix) { };
markdown-unlit = prev.callPackage (./pkgs/markdown-unlit.nix) { };
math-functions = prev.callPackage (./pkgs/math-functions.nix) { };
megaparsec = prev.callPackage (./pkgs/megaparsec.nix) { };
......
{ mkDerivation
, base
, base-compat
, directory
, hspec
, hspec-discover
, lib
, QuickCheck
, silently
, stringbuilder
, temporary
}:
mkDerivation {
pname = "markdown-unlit";
version = "0.5.1";
sha256 = "c70ef68ca9a9513ce26eba6dd4cf7ce1cb6b17f5ab47dfc1a9d47c544db15f5a";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base base-compat ];
executableHaskellDepends = [ base base-compat ];
testHaskellDepends = [
base
base-compat
directory
hspec
QuickCheck
silently
stringbuilder
temporary
];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/sol/markdown-unlit#readme";
description = "Literate Haskell support for Markdown";
license = lib.licenses.mit;
mainProgram = "markdown-unlit";
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment