2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, conduit, hspec, HUnit, network, networkConduit }:
|
2011-07-07 22:40:33 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 22:40:33 +01:00
|
|
|
pname = "simple-sendfile";
|
2013-10-13 09:14:31 +01:00
|
|
|
version = "0.2.13";
|
|
|
|
sha256 = "03cgbzfhkih1ln1xb78r1hfh6zzjjj6763n9nzr9cj6bxs0fiqd3";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ network ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ conduit hspec HUnit network networkConduit ];
|
2013-02-24 21:36:44 +00:00
|
|
|
doCheck = false;
|
2011-07-07 22:40:33 +01:00
|
|
|
meta = {
|
|
|
|
description = "Cross platform library for the sendfile system call";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 22:40:33 +01:00
|
|
|
};
|
|
|
|
})
|