3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
555 B
Nix
17 lines
555 B
Nix
{ cabal, conduit, hspec, HUnit, network, networkConduit }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "simple-sendfile";
|
|
version = "0.2.11";
|
|
sha256 = "1q9m9lxv9jfkn6a1lf07jcl4li3n5996df1qrfkfjq2n0bvn4qfj";
|
|
buildDepends = [ network ];
|
|
testDepends = [ conduit hspec HUnit network networkConduit ];
|
|
doCheck = false;
|
|
meta = {
|
|
description = "Cross platform library for the sendfile system call";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|