summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/simple-sendfile/default.nix
blob: 9e8f638c65cfd7153fc646f0ba041d98f5f86029 (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.11";
  sha256 = "1q9m9lxv9jfkn6a1lf07jcl4li3n5996df1qrfkfjq2n0bvn4qfj";
  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 ];
  };
})