Skip to content
Snippets Groups Projects

hydra-tui, update to hgn 0.13.0

Merged Daniel Firth requested to merge hgn into master
Compare and Show latest version
4 files
+ 0
50
Preferences
File browser
Compare changes
+ 0
43
{ mkDerivation, aeson, async, base, blaze-builder, brick
, bytestring, containers, fetchgit, filepath, hspec, hspec-discover
, hydra-cardano-api, hydra-cluster, hydra-node, hydra-prelude
, hydra-test-utils, io-classes, lib, microlens, microlens-mtl
, microlens-th, optparse-applicative, regex-tdfa, req, text, time
, unix, vty, vty-unix, websockets
}:
mkDerivation {
pname = "hydra-tui";
version = "0.17.0";
src = fetchgit {
url = "https://github.com/input-output-hk/hydra";
sha256 = "0fk4bjx7hh8hff9hjzdhdkm3px5a8z730xx2f0ly93cl9n93qfbs";
rev = "aeb17ef49017937615dd67a4bc0da23bebdfd4bd";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/hydra-tui/; echo source root reset to $sourceRoot";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson async base brick containers hydra-cardano-api hydra-node
hydra-prelude io-classes microlens microlens-mtl microlens-th
optparse-applicative req text time vty vty-unix websockets
];
executableHaskellDepends = [ hydra-prelude optparse-applicative ];
testHaskellDepends = [
blaze-builder bytestring filepath hspec hydra-cardano-api
hydra-cluster hydra-node hydra-prelude hydra-test-utils io-classes
optparse-applicative regex-tdfa unix vty vty-unix
];
testToolDepends = [ hspec-discover hydra-node ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "TUI for managing a Hydra node";
license = lib.licenses.asl20;
broken = false;
}
\ No newline at end of file