Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created February 14, 2015 05:03
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 ryantm/ac4892c5a5617bf62dec to your computer and use it in GitHub Desktop.
Save ryantm/ac4892c5a5617bf62dec to your computer and use it in GitHub Desktop.
nix-build
error: cannot auto-call a function that has an argument without a default value (‘mkDerivation’)
{ mkDerivation, aeson, base, bytestring, conduit, containers
, directory, esqueleto, file-embed, filepath, hlint, hslogger
, hspec, hspec-wai, http-conduit, irc, iso8601-time, lucid
, MissingH, mtl, network, optparse-applicative, persistent
, persistent-sqlite, persistent-template, QuickCheck
, quickcheck-instances, scotty, silently, stdenv, stm, text, time
, transformers, uuid, wai, wai-extra, wai-middleware-static
, wai-websockets, warp, websockets
}:
mkDerivation {
pname = "talklibre";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
buildDepends = [
aeson base bytestring conduit containers directory esqueleto
file-embed filepath hslogger http-conduit irc iso8601-time lucid
MissingH mtl network optparse-applicative persistent
persistent-sqlite persistent-template scotty silently stm text time
transformers uuid wai wai-middleware-static wai-websockets warp
websockets
];
testDepends = [
aeson base bytestring conduit containers directory esqueleto
file-embed filepath hlint hslogger hspec hspec-wai http-conduit irc
iso8601-time lucid MissingH mtl network optparse-applicative
persistent persistent-sqlite persistent-template QuickCheck
quickcheck-instances scotty silently stm text time transformers
uuid wai wai-extra wai-middleware-static wai-websockets warp
websockets
];
homepage = "https://github.com/talklibre/talklibre";
description = "The Talklibre instant messaging application";
license = stdenv.lib.licenses.publicDomain;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment