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