2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, network }:
|
2010-04-15 19:10:42 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 19:10:42 +01:00
|
|
|
pname = "sendfile";
|
2013-02-24 22:25:00 +00:00
|
|
|
version = "0.7.9";
|
|
|
|
sha256 = "0hnw1ym81cff49dwww19kgbs4s0kpandbvn6h5cml3y0p1nxybqh";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ network ];
|
2010-04-15 19:10:42 +01:00
|
|
|
meta = {
|
2012-10-23 17:29:59 +01:00
|
|
|
homepage = "http://hub.darcs.net/stepcut/sendfile";
|
2010-04-15 19:10:42 +01:00
|
|
|
description = "A portable sendfile library";
|
2011-08-07 19:23:31 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-04-15 19:10:42 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|