-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add a fork of hpc-coveralls to iohk-nix that replaces stack-hpc-coveralls and allows us to stop using stack on our CI/coverage builds.
- Loading branch information
1 parent
0de0af2
commit 8043d76
Showing
3 changed files
with
35 additions
and
1 deletion.
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
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,31 @@ | ||
{ mkDerivation, aeson, async, base, bytestring, Cabal, cmdargs | ||
, containers, curl, directory, directory-tree, fetchgit, hpc, HUnit | ||
, process, pureMD5, regex-posix, retry, safe, split, stdenv | ||
, transformers | ||
}: | ||
mkDerivation { | ||
pname = "hpc-coveralls"; | ||
version = "1.1.0"; | ||
src = fetchgit { | ||
url = "https://github.com/sevanspowell/hpc-coveralls.git"; | ||
sha256 = "03g4x2k5wv5jhflfip4np4f8hi0s9z1d4g1x9xk1rccylwspb1jw"; | ||
rev = "2af403c89d089acb8fba1d830ce090c1a759d696"; | ||
fetchSubmodules = true; | ||
}; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ | ||
aeson base bytestring Cabal cmdargs containers curl directory | ||
directory-tree hpc process pureMD5 retry safe split transformers | ||
]; | ||
executableHaskellDepends = [ | ||
aeson async base bytestring Cabal cmdargs containers curl directory | ||
directory-tree hpc process pureMD5 regex-posix retry safe split | ||
transformers | ||
]; | ||
testHaskellDepends = [ base HUnit ]; | ||
jailbreak = true; | ||
homepage = "https://github.com/guillaume-nargeot/hpc-coveralls"; | ||
description = "Coveralls.io support for Haskell."; | ||
license = stdenv.lib.licenses.bsd3; | ||
} |