-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1523 from ocharles/haskellPackages.websocketsSnap
haskellPackages.websocketsSnap: New exppression
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
pkgs/development/libraries/haskell/websockets-snap/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters