Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-platform
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Théophile Choutri
horizon-platform
Commits
ac03bb1f
Commit
ac03bb1f
authored
2 years ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
wai-app-static: init at 3.1.7.4
parent
93e03039
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/wai-app-static.nix
+107
-0
107 additions, 0 deletions
pkgs/wai-app-static.nix
with
110 additions
and
0 deletions
manifest.dhall
+
1
−
0
View file @
ac03bb1f
...
@@ -581,6 +581,7 @@ in [ callHackage "Cabal" "3.8.1.0"
...
@@ -581,6 +581,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "vinyl" "0.14.3"
, callHackage "vinyl" "0.14.3"
, callHackage "void" "0.7.3"
, callHackage "void" "0.7.3"
, callHackage "vty" "5.37"
, callHackage "vty" "5.37"
, callHackage "wai-app-static" "3.1.7.4"
, callHackage "wai-extra" "3.1.13.0"
, callHackage "wai-extra" "3.1.13.0"
, callCabal2nix
, callCabal2nix
"wai-middleware-heartbeat"
"wai-middleware-heartbeat"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
ac03bb1f
...
@@ -779,6 +779,8 @@ final: prev: with pkgs.haskell.lib; {
...
@@ -779,6 +779,8 @@ final: prev: with pkgs.haskell.lib; {
wai
=
prev
.
callPackage
(
./pkgs/wai.nix
)
{
};
wai
=
prev
.
callPackage
(
./pkgs/wai.nix
)
{
};
wai-app-static
=
prev
.
callPackage
(
./pkgs/wai-app-static.nix
)
{
};
wai-extra
=
prev
.
callPackage
(
./pkgs/wai-extra.nix
)
{
};
wai-extra
=
prev
.
callPackage
(
./pkgs/wai-extra.nix
)
{
};
wai-logger
=
prev
.
callPackage
(
./pkgs/wai-logger.nix
)
{
};
wai-logger
=
prev
.
callPackage
(
./pkgs/wai-logger.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/wai-app-static.nix
0 → 100644
+
107
−
0
View file @
ac03bb1f
{
mkDerivation
,
base
,
blaze-html
,
blaze-markup
,
bytestring
,
containers
,
cryptonite
,
directory
,
file-embed
,
filepath
,
hspec
,
http-date
,
http-types
,
lib
,
memory
,
mime-types
,
mockery
,
network
,
old-locale
,
optparse-applicative
,
template-haskell
,
temporary
,
text
,
time
,
transformers
,
unix-compat
,
unordered-containers
,
wai
,
wai-extra
,
warp
,
zlib
}:
mkDerivation
{
pname
=
"wai-app-static"
;
version
=
"3.1.7.4"
;
sha256
=
"647188444b19dc953bbfbab5611c81c1e1f27c31bac5dc31dd5de27cdbf01fc1"
;
isLibrary
=
true
;
isExecutable
=
true
;
enableSeparateDataOutput
=
false
;
libraryHaskellDepends
=
[
base
blaze-html
blaze-markup
bytestring
containers
cryptonite
directory
file-embed
filepath
http-date
http-types
memory
mime-types
old-locale
optparse-applicative
template-haskell
text
time
transformers
unix-compat
unordered-containers
wai
wai-extra
warp
zlib
];
executableHaskellDepends
=
[
base
bytestring
containers
directory
mime-types
text
];
testHaskellDepends
=
[
base
bytestring
filepath
hspec
http-date
http-types
mime-types
mockery
network
old-locale
temporary
text
time
transformers
unix-compat
wai
wai-extra
zlib
];
enableLibraryProfiling
=
false
;
enableExecutableProfiling
=
false
;
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
doBenchmark
=
false
;
hyperlinkSource
=
false
;
homepage
=
"http://www.yesodweb.com/book/web-application-interface"
;
description
=
"WAI application for static serving"
;
license
=
lib
.
licenses
.
mit
;
mainProgram
=
"warp"
;
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