Skip to content

Instantly share code, notes, and snippets.

@erictapen
Created September 3, 2017 16:56
Show Gist options
  • Save erictapen/be63111646962574b58a405a1c8aeb0b to your computer and use it in GitHub Desktop.
Save erictapen/be63111646962574b58a405a1c8aeb0b to your computer and use it in GitHub Desktop.
gitit" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, blaze-html
, bytestring, ConfigFile, containers, directory, feed, filepath
, filestore, ghc, ghc-paths, happstack-server, highlighting-kate
, hoauth2, hslogger, HStringTemplate, HTTP, http-client-tls
, http-conduit, json, mtl, network, network-uri, old-locale
, old-time, pandoc, pandoc-types, parsec, pretty, process, random
, recaptcha, safe, SHA, split, syb, tagsoup, text, time, uri, url
, utf8-string, uuid, xhtml, xml, xss-sanitize, zlib
}:
mkDerivation {
pname = "gitit";
version = "0.12.2.1";
sha256 = "1x2kh1lsqiib7g4yp7g0yijsghl27k1axjx3zmhl7fwhkxc4w48m";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base base64-bytestring blaze-html bytestring ConfigFile
containers directory feed filepath filestore ghc ghc-paths
happstack-server highlighting-kate
(hoauth2.overrideAttrs (oldAttrs: rec {
version = "0.4.3";
sha256 = "1qmhk9h3rwp29dsjqbgsma4zgzdd6cw1jcryzd17rk32biiiylvg";
}))
hslogger HStringTemplate
HTTP http-client-tls http-conduit json mtl network network-uri
old-locale old-time pandoc pandoc-types parsec pretty process
random recaptcha safe SHA split syb tagsoup text time uri url
utf8-string uuid xhtml xml xss-sanitize zlib
];
executableHaskellDepends = [
base bytestring directory filepath hslogger HTTP mtl network
network-uri syb url utf8-string
];
homepage = "http://gitit.net";
description = "Wiki using happstack, git or darcs, and pandoc";
license = "GPL";
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment