15 lines
433 B
Nix
15 lines
433 B
Nix
{ cabal, network }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "simple-sendfile";
|
|
version = "0.2.10";
|
|
sha256 = "07js189yyya2vs3wsc49b7c2zbh63f48kywmz88g7s394bp3n9am";
|
|
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 ];
|
|
};
|
|
})
|