-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore] fix CI config and update hsec tools and core
- Loading branch information
Showing
7 changed files
with
88 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
packages: | ||
./. | ||
|
||
-- https://github.com/haskell/security-advisories/pull/201 | ||
-- unreleased changes in hsec-tools and hsec-core | ||
source-repository-package | ||
type: git | ||
subdir: code/hsec-tools | ||
location: https://github.com/mangoiv/security-advisories.git | ||
tag: c1703e8cdb1b78a8692921a74a0584b66bef917e | ||
location: https://github.com/haskell/security-advisories.git | ||
tag: 4b773dd6d3ab31313fa7f2470053980af175bf27 | ||
|
||
source-repository-package | ||
type: git | ||
subdir: code/hsec-core | ||
location: https://github.com/haskell/security-advisories.git | ||
tag: 4b773dd6d3ab31313fa7f2470053980af175bf27 | ||
|
||
test-show-details: direct |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
mkDerivation, | ||
alex, | ||
array, | ||
base, | ||
containers, | ||
happy, | ||
hspec, | ||
hspec-discover, | ||
lib, | ||
markdown-unlit, | ||
prettyprinter, | ||
template-haskell, | ||
text, | ||
time, | ||
transformers, | ||
}: | ||
mkDerivation { | ||
pname = "toml-parser"; | ||
version = "2.0.1.0"; | ||
sha256 = "03366d727abac9e30055487dbfa07973c321aff571a0de9e504337aa586697e1"; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ | ||
array | ||
base | ||
containers | ||
prettyprinter | ||
text | ||
time | ||
transformers | ||
]; | ||
libraryToolDepends = [alex happy]; | ||
testHaskellDepends = [ | ||
base | ||
containers | ||
hspec | ||
template-haskell | ||
text | ||
time | ||
]; | ||
testToolDepends = [hspec-discover markdown-unlit]; | ||
description = "TOML 1.0.0 parser"; | ||
license = lib.licenses.isc; | ||
} |