2013-07-26 09:28:04 +01:00
|
|
|
{ cabal, conduit, filepath, hspec, stm, time, transformers }:
|
2013-04-03 22:50:40 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "unix-process-conduit";
|
2013-08-02 15:19:50 +01:00
|
|
|
version = "0.2.2";
|
|
|
|
sha256 = "15n6n925avv51kr2avwkp8sq8mfl287i0445vl9iy6hyxjjgpgr6";
|
2013-07-26 09:28:04 +01:00
|
|
|
buildDepends = [ conduit filepath stm time transformers ];
|
2013-04-03 22:50:40 +01:00
|
|
|
testDepends = [ conduit hspec transformers ];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/snoyberg/conduit";
|
|
|
|
description = "Run processes on Unix systems, with a conduit interface";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|