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

cabal.mkDerivation (self: {
  pname = "sendfile";
  version = "0.7.4";
  sha256 = "1h02fjdivsb3divdn3wg2skmw3jcd0n4axhlpgmrrbf92c3m35rq";
  buildDepends = [ network ];
  meta = {
    homepage = "http://patch-tag.com/r/mae/sendfile";
    description = "A portable sendfile library";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})