sendfile: updated to version 0.7.3

svn path=/nixpkgs/trunk/; revision=28247
This commit is contained in:
Peter Simons 2011-08-07 18:23:31 +00:00
parent e2ca9813d4
commit 96bfd6f21c

View File

@ -1,14 +1,15 @@
{cabal, network}: {cabal, network} :
cabal.mkDerivation (self : { cabal.mkDerivation (self : {
pname = "sendfile"; pname = "sendfile";
version = "0.6.2"; version = "0.7.3";
sha256 = "2d7bf7fdcae7e2ffa24bf70bc1bdc7ea4e6b1726f6cee63cd14c2eeb5545749a"; sha256 = "0xa5ryyznw7cizdqjnisvyhirdljw5z7aydwv5m9lv9hkx3bs6l0";
propagatedBuildInputs = [network]; propagatedBuildInputs = [ network ];
meta = { meta = {
homepage = "http://patch-tag.com/r/mae/sendfile";
description = "A portable sendfile library"; description = "A portable sendfile library";
license = "BSD"; license = self.stdenv.lib.licenses.bsd3;
maintainers = [self.stdenv.lib.maintainers.andres]; platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
}; };
}) })