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

pandoc-types: init at 1.22.2.1

parent 96521277
Branches
Tags
No related merge requests found
......@@ -359,6 +359,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "optics-th" "0.4.1"
, callHackage "optics" "0.4.2"
, callHackage "optparse-applicative" "0.17.0.0"
, callHackage "pandoc-types" "1.22.2.1"
, callHackage "pandoc" "2.19.2"
, callHackage "parallel" "3.2.2.0"
, callHackage "password-types" "1.0.0.0"
......
......@@ -443,6 +443,8 @@ final: prev: with pkgs.haskell.lib; {
pandoc = prev.callPackage (./pkgs/pandoc.nix) { };
pandoc-types = prev.callPackage (./pkgs/pandoc-types.nix) { };
parallel = prev.callPackage (./pkgs/parallel.nix) { };
password = prev.callPackage (./pkgs/password.nix) { };
......
{ mkDerivation
, aeson
, base
, bytestring
, containers
, criterion
, deepseq
, ghc-prim
, HUnit
, lib
, QuickCheck
, string-qq
, syb
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
, text
, transformers
}:
mkDerivation {
pname = "pandoc-types";
version = "1.22.2.1";
sha256 = "4ce796129d67c73967bc0b301c7110bc7dbab7a53b4d1e147ba257991661659d";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
base
bytestring
containers
deepseq
ghc-prim
QuickCheck
syb
text
transformers
];
testHaskellDepends = [
aeson
base
bytestring
containers
HUnit
QuickCheck
string-qq
syb
test-framework
test-framework-hunit
test-framework-quickcheck2
text
];
benchmarkHaskellDepends = [ base criterion text ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://pandoc.org/";
description = "Types for representing a structured document";
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