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