Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-platform
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
package-sets
horizon-platform
Commits
00d346c7
Commit
00d346c7
authored
2 years ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
websockets: init at 0.12.7.3
parent
a9ae4edc
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
manifest.dhall
+1
-0
1 addition, 0 deletions
manifest.dhall
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/websockets.nix
+105
-0
105 additions, 0 deletions
pkgs/websockets.nix
with
108 additions
and
0 deletions
manifest.dhall
+
1
−
0
View file @
00d346c7
...
...
@@ -682,6 +682,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "wai" "3.2.3"
, callHackage "warp" "3.3.22"
, callHackage "warp-tls" "3.3.3"
, callHackage "websockets" "0.12.7.3"
, callHackage "witherable" "0.4.2"
, callHackage "with-utf8" "1.0.2.3"
, callHackage "x509-store" "1.6.9"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
00d346c7
...
...
@@ -971,6 +971,8 @@ final: prev: with pkgs.haskell.lib; {
warp-tls
=
prev
.
callPackage
(
./pkgs/warp-tls.nix
)
{
};
websockets
=
prev
.
callPackage
(
./pkgs/websockets.nix
)
{
};
with
-
utf8
=
prev
.
callPackage
(
./pkgs/with-utf8.nix
)
{
};
witherable
=
prev
.
callPackage
(
./pkgs/witherable.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/websockets.nix
0 → 100644
+
105
−
0
View file @
00d346c7
{
mkDerivation
,
async
,
attoparsec
,
base
,
base64-bytestring
,
binary
,
bytestring
,
bytestring-builder
,
case-insensitive
,
clock
,
containers
,
criterion
,
entropy
,
HUnit
,
lib
,
network
,
QuickCheck
,
random
,
SHA
,
streaming-commons
,
test-framework
,
test-framework-hunit
,
test-framework-quickcheck2
,
text
}:
mkDerivation
{
pname
=
"websockets"
;
version
=
"0.12.7.3"
;
sha256
=
"d3b0a8a0df7ac7c39c2572152ff903af2d5f009627dde4dada6fb81c89057f3c"
;
revision
=
"1"
;
editedCabalFile
=
"1yx97y6jl74vy200y43vjxfyzx338kh10dx8vxkjhr0mfh36wldq"
;
isLibrary
=
true
;
isExecutable
=
true
;
enableSeparateDataOutput
=
false
;
libraryHaskellDepends
=
[
async
attoparsec
base
base64-bytestring
binary
bytestring
bytestring-builder
case-insensitive
clock
containers
entropy
network
random
SHA
streaming-commons
text
];
testHaskellDepends
=
[
async
attoparsec
base
base64-bytestring
binary
bytestring
bytestring-builder
case-insensitive
clock
containers
entropy
HUnit
network
QuickCheck
random
SHA
streaming-commons
test-framework
test-framework-hunit
test-framework-quickcheck2
text
];
benchmarkHaskellDepends
=
[
async
attoparsec
base
base64-bytestring
binary
bytestring
bytestring-builder
case-insensitive
clock
containers
criterion
entropy
network
random
SHA
text
];
enableLibraryProfiling
=
false
;
enableExecutableProfiling
=
false
;
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
doBenchmark
=
false
;
hyperlinkSource
=
false
;
homepage
=
"http://jaspervdj.be/websockets"
;
description
=
"A sensible and clean way to write WebSocket-capable servers in Haskell"
;
license
=
lib
.
licenses
.
bsd3
;
broken
=
false
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment