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";
|
2012-11-01 10:08:29 +01:00
|
|
|
version = "0.7.8";
|
|
|
|
sha256 = "0xy9ciikr444gblh3r8z3w4h4rcrfjfciw3dvxgzbygqs5dy6yxl";
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-04-15 20:10:42 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|