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

skylighting-core: init at 0.13.1.1

parent ac03bb1f
No related merge requests found
......@@ -487,6 +487,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "singleton-bool" "0.1.6"
, callHackage "singletons" "3.0.2"
, callHackage "slugify" "0.1.0.1"
, callHackage "skylighting-core" "0.13.1.1"
, callHackage "socks" "0.6.1"
, callHackage "some" "1.0.4"
, callHackage "sop-core" "0.5.0.1"
......
......@@ -627,6 +627,8 @@ final: prev: with pkgs.haskell.lib; {
singletons = prev.callPackage (./pkgs/singletons.nix) { };
skylighting-core = prev.callPackage (./pkgs/skylighting-core.nix) { };
slugify = prev.callPackage (./pkgs/slugify.nix) { };
socks = prev.callPackage (./pkgs/socks.nix) { };
......
{ mkDerivation
, aeson
, attoparsec
, base
, base64-bytestring
, binary
, bytestring
, case-insensitive
, colour
, containers
, criterion
, Diff
, directory
, filepath
, lib
, mtl
, pretty-show
, QuickCheck
, safe
, tasty
, tasty-golden
, tasty-hunit
, tasty-quickcheck
, text
, transformers
, utf8-string
, xml-conduit
}:
mkDerivation {
pname = "skylighting-core";
version = "0.13.1.1";
sha256 = "dab79d597f3fee1762a72bba69028c361cfbecaaa548155e0b99ab497d662933";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
attoparsec
base
base64-bytestring
binary
bytestring
case-insensitive
colour
containers
directory
filepath
mtl
safe
text
transformers
utf8-string
xml-conduit
];
testHaskellDepends = [
aeson
base
bytestring
containers
Diff
directory
filepath
pretty-show
QuickCheck
tasty
tasty-golden
tasty-hunit
tasty-quickcheck
text
];
benchmarkHaskellDepends = [
base
containers
criterion
filepath
text
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/jgm/skylighting";
description = "syntax highlighting library";
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