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

commonmark: init at 0.2.2

parent 295b2a4a
Branches
No related merge requests found
......@@ -120,6 +120,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "citeproc" "0.8.0.1"
, callHackage "co-log-core" "0.3.1.0"
, callHackage "co-log-polysemy" "0.0.1.3"
, callHackage "commonmark" "0.2.2"
, callHackage "comonad" "5.0.8"
, callHackage "compact" "0.2.0.0"
, callCabal2nix
......
......@@ -115,6 +115,8 @@ final: prev: with pkgs.haskell.lib; {
co-log-polysemy = prev.callPackage (./pkgs/co-log-polysemy.nix) { };
commonmark = prev.callPackage (./pkgs/commonmark.nix) { };
comonad = prev.callPackage (./pkgs/comonad.nix) { };
compact = prev.callPackage (./pkgs/compact.nix) { };
......
{ mkDerivation
, base
, bytestring
, containers
, lib
, parsec
, tasty
, tasty-bench
, tasty-hunit
, tasty-quickcheck
, text
, transformers
, unicode-data
, unicode-transforms
}:
mkDerivation {
pname = "commonmark";
version = "0.2.2";
sha256 = "b70b421f5753d983745e558d7d66a5e346ee5b2ebc0a827e9f63f8ff7a62b24e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
containers
parsec
text
transformers
unicode-data
unicode-transforms
];
testHaskellDepends = [
base
parsec
tasty
tasty-hunit
tasty-quickcheck
text
unicode-transforms
];
benchmarkHaskellDepends = [ base tasty-bench text ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/jgm/commonmark-hs";
description = "Pure Haskell commonmark parser";
license = lib.licenses.bsd3;
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