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
ad3f1d31
Commit
ad3f1d31
authored
2 years ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
safe-coloured-text-layout: init at 0.0.0.0
parent
8be03666
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
horizon.dhall
+1
-0
1 addition, 0 deletions
horizon.dhall
initial-packages.nix
+2
-0
2 additions, 0 deletions
initial-packages.nix
pkgs/safe-coloured-text-layout.nix
+38
-0
38 additions, 0 deletions
pkgs/safe-coloured-text-layout.nix
with
41 additions
and
0 deletions
horizon.dhall
+
1
−
0
View file @
ad3f1d31
...
@@ -652,6 +652,7 @@ in { compiler = "ghc-9.4.2"
...
@@ -652,6 +652,7 @@ in { compiler = "ghc-9.4.2"
, H.callHackage "resourcet" "1.3.0"
, H.callHackage "resourcet" "1.3.0"
, H.callHackage "retry" "0.9.3.0"
, H.callHackage "retry" "0.9.3.0"
, H.callHackage "rope-utf16-splay" "0.4.0.0"
, H.callHackage "rope-utf16-splay" "0.4.0.0"
, H.callHackage "safe-coloured-text-layout" "0.0.0.0"
, H.callHackage "safe-coloured-text-terminfo" "0.1.0.0"
, H.callHackage "safe-coloured-text-terminfo" "0.1.0.0"
, H.callHackage "safe-coloured-text" "0.2.0.1"
, H.callHackage "safe-coloured-text" "0.2.0.1"
, H.callHackage "safe-exceptions" "0.1.7.3"
, H.callHackage "safe-exceptions" "0.1.7.3"
...
...
This diff is collapsed.
Click to expand it.
initial-packages.nix
+
2
−
0
View file @
ad3f1d31
...
@@ -1069,6 +1069,8 @@ self: with pkgs.haskell.lib; {
...
@@ -1069,6 +1069,8 @@ self: with pkgs.haskell.lib; {
safe-coloured-text
=
self
.
callPackage
(
./pkgs/safe-coloured-text.nix
)
{
};
safe-coloured-text
=
self
.
callPackage
(
./pkgs/safe-coloured-text.nix
)
{
};
safe-coloured-text-layout
=
self
.
callPackage
(
./pkgs/safe-coloured-text-layout.nix
)
{
};
safe-coloured-text-terminfo
=
self
.
callPackage
(
./pkgs/safe-coloured-text-terminfo.nix
)
{
};
safe-coloured-text-terminfo
=
self
.
callPackage
(
./pkgs/safe-coloured-text-terminfo.nix
)
{
};
safe-exceptions
=
self
.
callPackage
(
./pkgs/safe-exceptions.nix
)
{
};
safe-exceptions
=
self
.
callPackage
(
./pkgs/safe-exceptions.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/safe-coloured-text-layout.nix
0 → 100644
+
38
−
0
View file @
ad3f1d31
{
mkDerivation
,
base
,
bytestring
,
lib
,
safe-coloured-text
,
sydtest
,
sydtest-discover
,
text
,
validity
}:
mkDerivation
{
pname
=
"safe-coloured-text-layout"
;
version
=
"0.0.0.0"
;
sha256
=
"7c19de565f93b9c183698dd238b66e0e68ae9d5827f93ab9f79036933476cb85"
;
isLibrary
=
true
;
isExecutable
=
false
;
enableSeparateDataOutput
=
false
;
libraryHaskellDepends
=
[
base
safe-coloured-text
text
validity
];
testHaskellDepends
=
[
base
bytestring
safe-coloured-text
sydtest
text
];
testToolDepends
=
[
sydtest-discover
];
enableLibraryProfiling
=
true
;
enableExecutableProfiling
=
true
;
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
doBenchmark
=
false
;
hyperlinkSource
=
false
;
homepage
=
"https://github.com/NorfairKing/safe-coloured-text#readme"
;
description
=
"Safely layout output coloured text"
;
license
=
lib
.
licenses
.
mit
;
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