2011-08-09 23:00:20 +00:00
|
|
|
{ cabal, network }:
|
2010-04-15 18:10:42 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 18:10:42 +00:00
|
|
|
pname = "sendfile";
|
2012-01-04 17:48:36 +00:00
|
|
|
version = "0.7.4";
|
|
|
|
sha256 = "1h02fjdivsb3divdn3wg2skmw3jcd0n4axhlpgmrrbf92c3m35rq";
|
2011-08-09 23:00:20 +00:00
|
|
|
buildDepends = [ network ];
|
2010-04-15 18:10:42 +00:00
|
|
|
meta = {
|
2011-08-07 18:23:31 +00:00
|
|
|
homepage = "http://patch-tag.com/r/mae/sendfile";
|
2010-04-15 18:10:42 +00:00
|
|
|
description = "A portable sendfile library";
|
2011-08-07 18:23:31 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-09 23:00:20 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-04-15 18:10:42 +00:00
|
|
|
};
|
2011-03-28 15:04:00 +00:00
|
|
|
})
|