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";
|
2012-03-22 11:17:49 +00:00
|
|
|
version = "0.7.6";
|
|
|
|
sha256 = "0wqbnr07s3g7f6p4x27ips9nzjjz1ii5hw1q54i31g40jzv8rs7z";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ network ];
|
2010-04-15 19:10:42 +01:00
|
|
|
meta = {
|
2011-08-07 19:23:31 +01:00
|
|
|
homepage = "http://patch-tag.com/r/mae/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;
|
2011-08-10 00:00:20 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-04-15 19:10:42 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|