Skip to content

Instantly share code, notes, and snippets.

@charukiewicz
Created July 30, 2019 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charukiewicz/fab387b1c1150d3bf3a80d2d3633fb17 to your computer and use it in GitHub Desktop.
Save charukiewicz/fab387b1c1150d3bf3a80d2d3633fb17 to your computer and use it in GitHub Desktop.
{ mkDerivation, aeson, attoparsec, base, base64-bytestring
, blaze-html, bytestring, conduit, containers, fast-logger, hspec
, http-api-data, monad-logger, mtl, path-pieces, resource-pool
, resourcet, scientific, silently, stdenv, template-haskell, text
, time, transformers, unliftio-core, unordered-containers, vector
, fetchgit
}:
mkDerivation {
pname = "persistent";
version = "2.10.0";
src = fetchgit {
url = "https://github.com/charukiewicz/persistent";
rev = "cdf18b1b2f6a421b8c401faca60c8c018b4b94f6";
sha256 = "0yqzz0pq1xl6qqcbr846l77wz7qfqlf8c4358vlcp0y2wmx7pxri";
fetchSubmodules = false;
};
sourceRoot = "persistent";
libraryHaskellDepends = [
aeson attoparsec base base64-bytestring blaze-html bytestring
conduit containers fast-logger http-api-data monad-logger mtl
path-pieces resource-pool resourcet scientific silently
template-haskell text time transformers unliftio-core
unordered-containers vector
];
testHaskellDepends = [
aeson attoparsec base base64-bytestring blaze-html bytestring
containers hspec http-api-data path-pieces scientific text time
transformers unordered-containers vector
];
doCheck = false;
homepage = "http://www.yesodweb.com/book/persistent";
description = "Type-safe, multi-backend data serialization";
license = stdenv.lib.licenses.mit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment