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