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

cabal.mkDerivation (self: {
  pname = "simple-sendfile";
  version = "0.2.7";
  sha256 = "0chjcn6j5irzjqid3nhh2ya395aqavcar3ygzd01z96ha1nl4dbw";
  buildDepends = [ network ];
  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 ];
  };
})