summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/sendfile/default.nix
blob: dc1f24757af28b8927ec6e46c99bd25fb8ef2a3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, network }:

cabal.mkDerivation (self: {
  pname = "sendfile";
  version = "0.7.9";
  sha256 = "0hnw1ym81cff49dwww19kgbs4s0kpandbvn6h5cml3y0p1nxybqh";
  buildDepends = [ network ];
  meta = {
    homepage = "http://hub.darcs.net/stepcut/sendfile";
    description = "A portable sendfile library";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})