nixpkgs/pkgs/development/libraries/haskell/sendfile/default.nix
Andres Löh b18dd91057 Removing trailing whitespace.
svn path=/nixpkgs/trunk/; revision=26570
2011-03-28 15:04:00 +00:00

15 lines
353 B
Nix

{cabal, network}:
cabal.mkDerivation (self : {
pname = "sendfile";
version = "0.6.2";
sha256 = "2d7bf7fdcae7e2ffa24bf70bc1bdc7ea4e6b1726f6cee63cd14c2eeb5545749a";
propagatedBuildInputs = [network];
meta = {
description = "A portable sendfile library";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})