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