Skip to content
Snippets Groups Projects
Commit ad8e63cf authored by Daniel Firth's avatar Daniel Firth
Browse files

sequence-formats: 1.8.0.1

parent 93328b4f
Branches
1 merge request!26Update to horizon-gen-nix 0.13.0 and ghc 9.10
Pipeline #6850 failed with stages
in 31 seconds
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
...@@ -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"
} }
......
...@@ -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"
......
...@@ -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) { });
......
{ 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
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment