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