0695a74c68
Let's begin silently and add the first dependency in our ongoing roadmap of butchering missing dependencies leading up to yesod-test: .---- yesod-test -------. | | | | | | .- hspec -. wai-test html-conduit -. | | | | : | | filesystem-conduit : hspec-expectations | : | : tagstream-conduit : : silently <- Yay, our first victim, silently killed by a chainsaw: .,.,.,.,.,.,.||\ ,-. ROAWRR! :::::::::::::: | o O `-' `'`'`'`'`'`'`---` Signed-off-by: aszlig <aszlig@redmoonstudios.org>
14 lines
426 B
Nix
14 lines
426 B
Nix
{ cabal, deepseq }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "silently";
|
|
version = "1.2.0.2";
|
|
sha256 = "0qcprbjnh351hc9v12gww478qd4pw7wgpyjj1gmkx4mr80w0qmm1";
|
|
buildDepends = [ deepseq ];
|
|
meta = {
|
|
homepage = "https://github.com/trystan/silently";
|
|
description = "Prevent or capture writing to stdout and other handles";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|