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
0053279c
Commit
0053279c
authored
2 years ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
test-framework: init at 0.8.2.0
parent
ab84c71e
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/test-framework.nix
+68
-0
68 additions, 0 deletions
pkgs/test-framework.nix
with
71 additions
and
0 deletions
manifest.dhall
+
1
−
0
View file @
0053279c
...
...
@@ -464,6 +464,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(None Text)
(Some "hunit")
, callHackage "tasty-wai" "0.1.2.0"
, callHackage "test-framework" "0.8.2.0"
, callHackage "text-display" "0.0.3.0"
, callHackage "text-metrics" "0.3.2"
, callHackage "text-zipper" "0.12"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
0053279c
...
...
@@ -561,6 +561,8 @@ final: prev: with pkgs.haskell.lib; {
tasty-wai
=
prev
.
callPackage
(
./pkgs/tasty-wai.nix
)
{
};
test-framework
=
prev
.
callPackage
(
./pkgs/test-framework.nix
)
{
};
text-display
=
prev
.
callPackage
(
./pkgs/text-display.nix
)
{
};
text-metrics
=
prev
.
callPackage
(
./pkgs/text-metrics.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/test-framework.nix
0 → 100644
+
68
−
0
View file @
0053279c
{
mkDerivation
,
ansi-terminal
,
ansi-wl-pprint
,
base
,
bytestring
,
containers
,
hostname
,
HUnit
,
lib
,
libxml
,
old-locale
,
QuickCheck
,
random
,
regex-posix
,
semigroups
,
time
,
xml
}:
mkDerivation
{
pname
=
"test-framework"
;
version
=
"0.8.2.0"
;
sha256
=
"f5aec7a15dbcb39e951bcf6502606fd99d751197b5510f41706899aa7e660ac2"
;
revision
=
"8"
;
editedCabalFile
=
"1sal1qqvc8c1rvsqz292bniy1kr5rx6ll7z9chwsz6j2ncw5sgmg"
;
isLibrary
=
true
;
isExecutable
=
false
;
enableSeparateDataOutput
=
false
;
libraryHaskellDepends
=
[
ansi-terminal
ansi-wl-pprint
base
containers
hostname
old-locale
random
regex-posix
time
xml
];
testHaskellDepends
=
[
ansi-terminal
ansi-wl-pprint
base
bytestring
containers
hostname
HUnit
libxml
old-locale
QuickCheck
random
regex-posix
semigroups
time
xml
];
enableLibraryProfiling
=
false
;
enableExecutableProfiling
=
false
;
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
doBenchmark
=
false
;
hyperlinkSource
=
false
;
homepage
=
"http://haskell.github.io/test-framework/"
;
description
=
"Framework for running and organising tests, with HUnit and QuickCheck support"
;
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