nixpkgs/pkgs/development/libraries/haskell/sendfile/default.nix
Peter Simons 96bfd6f21c sendfile: updated to version 0.7.3
svn path=/nixpkgs/trunk/; revision=28247
2011-08-07 18:23:31 +00:00

16 lines
483 B
Nix

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