b0522b53cd
A fresh delivery of filesystem conduits just arrived, so we just have to add tagstream-conduit and we just have direct dependencies left. .- yesod-test -. | | wai-test | ,-------. html-conduit | FOOD! | | | ______/ tagstream-conduit |/` ._________________________. | | ,'`--__T__T__T_`:: | FILESYSTEM CONDUIT(S) | Vvvv. <o] [] []`:,: |_________________________| >--------) _________,-': ...`-'`-'.............`-'`-'.........\^^^^_,'`-'.`-'`-'.: `""" Signed-off-by: aszlig <aszlig@redmoonstudios.org>
18 lines
527 B
Nix
18 lines
527 B
Nix
{ cabal, conduit, systemFileio, systemFilepath, text, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "filesystem-conduit";
|
|
version = "0.5.0.1";
|
|
sha256 = "1rpyrvs9hsi86zj6rghv91jn5lcx9wppg1wa4gp976kmagd4wl93";
|
|
buildDepends = [
|
|
conduit systemFileio systemFilepath text transformers
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
description = "Use system-filepath data types with conduits";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|