2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, deepseq, nanospec }:
|
haskell-silently: New package, v1.2.0.2.
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>
2012-09-12 04:31:49 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "silently";
|
2012-12-05 13:03:01 +00:00
|
|
|
version = "1.2.4.1";
|
|
|
|
sha256 = "035dw3zg680ykyz5rqkkrjn51wkznbc4jb45a8l2gh3vgqzgbf52";
|
haskell-silently: New package, v1.2.0.2.
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>
2012-09-12 04:31:49 +01:00
|
|
|
buildDepends = [ deepseq ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ deepseq nanospec ];
|
haskell-silently: New package, v1.2.0.2.
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>
2012-09-12 04:31:49 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|