Skip to content

Commit

Permalink
Merge pull request #1523 from ocharles/haskellPackages.websocketsSnap
Browse files Browse the repository at this point in the history
haskellPackages.websocketsSnap: New exppression
  • Loading branch information
peti committed Jan 15, 2014
2 parents b2b0d7f + 5df5c10 commit 9478b8e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pkgs/development/libraries/haskell/websockets-snap/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ cabal, blazeBuilder, enumerator, ioStreams, mtl, snapCore
, snapServer, websockets
}:

cabal.mkDerivation (self: {
pname = "websockets-snap";
version = "0.8.2.0";
sha256 = "0z6my5l1rm39prnhpvgg7z3q57y29ai3wddw1yfadrdsx8qra67s";
buildDepends = [
blazeBuilder enumerator ioStreams mtl snapCore snapServer
websockets
];
meta = {
description = "Snap integration for the websockets library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})
2 changes: 2 additions & 0 deletions pkgs/top-level/haskell-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2417,6 +2417,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x

websockets = callPackage ../development/libraries/haskell/websockets {};

websocketsSnap = callPackage ../development/libraries/haskell/websockets-snap {};

CouchDB = callPackage ../development/libraries/haskell/CouchDB {};

wlPprint = callPackage ../development/libraries/haskell/wl-pprint {};
Expand Down

0 comments on commit 9478b8e

Please sign in to comment.