15 lines
373 B
Nix
15 lines
373 B
Nix
|
{cabal, network}:
|
||
|
|
||
|
cabal.mkDerivation (self : {
|
||
|
pname = "simple-sendfile";
|
||
|
version = "0.1.2";
|
||
|
sha256 = "08w5ria2x41j85z1126kddi918zdqrwmr4vwqczgzh9kdi49wv8j";
|
||
|
propagatedBuildInputs = [network];
|
||
|
meta = {
|
||
|
description = "Cross platform library for the sendfile system call";
|
||
|
license = "BSD3";
|
||
|
maintainers = [self.stdenv.lib.maintainers.andres];
|
||
|
};
|
||
|
})
|
||
|
|