2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, network }:
|
2011-07-07 23:40:33 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 23:40:33 +02:00
|
|
|
pname = "simple-sendfile";
|
2012-06-28 14:45:11 +02:00
|
|
|
version = "0.2.4";
|
|
|
|
sha256 = "1c7imvkb5aq5mlg6a1r36fp9klniicbj56n32yvzj4qqf1zy2pbx";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ network ];
|
2011-07-07 23:40:33 +02:00
|
|
|
meta = {
|
|
|
|
description = "Cross platform library for the sendfile system call";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 23:40:33 +02:00
|
|
|
};
|
|
|
|
})
|