24dcf491fc
Running 1 test suites... Test suite test-versions: RUNNING... test-versions: test/queens-ghc-6.12.1.eventlog: openBinaryFile: does not exist (No such file or directory) Test suite test-versions: FAIL Test suite logged to: dist/test/ghc-events-0.4.2.0-test-versions.log 0 of 1 test suites (0 of 1 test cases) passed.
19 lines
532 B
Nix
19 lines
532 B
Nix
{ cabal, binary, mtl }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ghc-events";
|
|
version = "0.4.2.0";
|
|
sha256 = "0209r9g5w4ifsaw3dkfra6kma1vyk50dc306an72mcwnp4l7dv4l";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ binary mtl ];
|
|
testDepends = [ binary mtl ];
|
|
doCheck = false;
|
|
meta = {
|
|
description = "Library and tool for parsing .eventlog files from GHC";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|