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

cabal.mkDerivation (self: {
  pname = "simple-sendfile";
  version = "0.2.12";
  sha256 = "019n82700fbhsqxgn1cwfqii27r436gljis7yl02zjnzy7xlvrha";
  buildDepends = [ network ];
  testDepends = [ conduit hspec HUnit network networkConduit ];
  doCheck = false;
  meta = {
    description = "Cross platform library for the sendfile system call";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})