summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/sendfile/default.nix
blob: 12554817992a4be86c0ba66fa4e4da934c8c1487 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{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];
  };
})