Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-biohaskell
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
3
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-biohaskell
Commits
ad8e63cf
Commit
ad8e63cf
authored
10 months ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
sequence-formats: 1.8.0.1
parent
93328b4f
Branches
Branches containing commit
1 merge request
!26
Update to horizon-gen-nix 0.13.0 and ghc 9.10
Pipeline
#6850
failed with stages
in 31 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitlab-ci.yml
+38
-2
38 additions, 2 deletions
.gitlab-ci.yml
horizon.dhall
+1
-0
1 addition, 0 deletions
horizon.dhall
horizon.lock
+4
-0
4 additions, 0 deletions
horizon.lock
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/sequence-formats.nix
+33
-0
33 additions, 0 deletions
pkgs/sequence-formats.nix
with
78 additions
and
2 deletions
.gitlab-ci.yml
+
38
−
2
View file @
ad8e63cf
include
:
stages
:
-
remote
:
'
https://gitlab.horizon-haskell.net/gitlab/ci-templates/raw/master/default.yml'
-
build
-
devour
-
cachix
build
:
stage
:
build
script
:
-
nix build .#packages.$SYSTEM.$PACKAGE -L
parallel
:
matrix
:
-
SYSTEM
:
-
aarch64-darwin
-
x86_64-linux
PACKAGE
:
-
sequence-formats
devour
:
stage
:
devour
script
:
-
nix build github:srid/devour-flake#packages.$SYSTEM.default -L --no-link --print-out-paths --override-input flake . --keep-going
parallel
:
matrix
:
-
SYSTEM
:
-
aarch64-darwin
-
x86_64-linux
cachix
:
stage
:
cachix
rules
:
-
if
:
$CI_COMMIT_REF_PROTECTED == "true"
script
:
-
nix-shell -p cachix --command "nix build github:srid/devour-flake#packages.$SYSTEM.default -L --no-link --print-out-paths --override-input flake . | xargs cat | cachix push horizon"
parallel
:
matrix
:
-
SYSTEM
:
-
aarch64-darwin
-
x86_64-linux
This diff is collapsed.
Click to expand it.
horizon.dhall
+
1
−
0
View file @
ad8e63cf
...
@@ -20,6 +20,7 @@ let packages =
...
@@ -20,6 +20,7 @@ let packages =
, iterable = H.callHackage "iterable" "3.0"
, iterable = H.callHackage "iterable" "3.0"
, log-domain = H.callHackage "log-domain" "0.13.2"
, log-domain = H.callHackage "log-domain" "0.13.2"
, memexml = H.callHackage "memexml" "0.0.3"
, memexml = H.callHackage "memexml" "0.0.3"
, sequence-formats = H.callHackage "sequence-formats" "1.8.0.1"
, stringable = H.callHackage "stringable" "0.1.3"
, stringable = H.callHackage "stringable" "0.1.3"
, text-binary = H.callHackage "text-binary" "0.2.1.1"
, text-binary = H.callHackage "text-binary" "0.2.1.1"
}
}
...
...
This diff is collapsed.
Click to expand it.
horizon.lock
+
4
−
0
View file @
ad8e63cf
...
@@ -70,6 +70,10 @@
...
@@ -70,6 +70,10 @@
, mapValue =
, mapValue =
"a13fd285ec121fbba353687c602ce1913cd084fc085cbb77b1acea858f614ac3"
"a13fd285ec121fbba353687c602ce1913cd084fc085cbb77b1acea858f614ac3"
}
}
, { mapKey = "sequence-formats"
, mapValue =
"9c51a27d3a671baaa2d2ad5ab83f36ca1a05c39abc9aa89768313e79cfc3486d"
}
, { mapKey = "stringable"
, { mapKey = "stringable"
, mapValue =
, mapValue =
"a092d279593143ad2b91de87036f162c0dc49e8f0c213c1384432542474565df"
"a092d279593143ad2b91de87036f162c0dc49e8f0c213c1384432542474565df"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
ad8e63cf
...
@@ -38,6 +38,8 @@ final: prev: with pkgs.haskell.lib; {
...
@@ -38,6 +38,8 @@ final: prev: with pkgs.haskell.lib; {
memexml
=
f
final
prev
"memexml"
(
final
.
callPackage
(
./pkgs/memexml.nix
)
{
});
memexml
=
f
final
prev
"memexml"
(
final
.
callPackage
(
./pkgs/memexml.nix
)
{
});
sequence-formats
=
f
final
prev
"sequence-formats"
(
final
.
callPackage
(
./pkgs/sequence-formats.nix
)
{
});
stringable
=
f
final
prev
"stringable"
(
final
.
callPackage
(
./pkgs/stringable.nix
)
{
});
stringable
=
f
final
prev
"stringable"
(
final
.
callPackage
(
./pkgs/stringable.nix
)
{
});
text-binary
=
f
final
prev
"text-binary"
(
final
.
callPackage
(
./pkgs/text-binary.nix
)
{
});
text-binary
=
f
final
prev
"text-binary"
(
final
.
callPackage
(
./pkgs/text-binary.nix
)
{
});
...
...
This diff is collapsed.
Click to expand it.
pkgs/sequence-formats.nix
0 → 100644
+
33
−
0
View file @
ad8e63cf
{
mkDerivation
,
attoparsec
,
base
,
bytestring
,
containers
,
errors
,
exceptions
,
foldl
,
hspec
,
lens-family
,
lib
,
pipes
,
pipes-attoparsec
,
pipes-bytestring
,
pipes-safe
,
tasty
,
tasty-hunit
,
transformers
,
vector
}:
mkDerivation
{
pname
=
"sequence-formats"
;
version
=
"1.8.0.1"
;
sha256
=
"b3ff93fca7f78000933aa9c0380b60081f2291156391c4ee3951dce3db087c24"
;
isLibrary
=
true
;
isExecutable
=
false
;
enableSeparateDataOutput
=
false
;
libraryHaskellDepends
=
[
attoparsec
base
bytestring
containers
errors
exceptions
foldl
lens-family
pipes
pipes-attoparsec
pipes-bytestring
pipes-safe
transformers
vector
];
testHaskellDepends
=
[
base
bytestring
containers
foldl
hspec
pipes
pipes-safe
tasty
tasty-hunit
transformers
vector
];
enableLibraryProfiling
=
true
;
enableExecutableProfiling
=
true
;
doHaddock
=
true
;
jailbreak
=
true
;
doCheck
=
false
;
doBenchmark
=
false
;
hyperlinkSource
=
false
;
homepage
=
"https://github.com/stschiff/sequence-formats"
;
description
=
"A package with basic parsing utilities for several Bioinformatic data formats"
;
license
=
lib
.
licenses
.
gpl3Only
;
broken
=
false
;
}
\ No newline at end of file
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