nixpkgs/pkgs/development/libraries/haskell/simple-sendfile/default.nix

15 lines
373 B
Nix
Raw Normal View History

{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];
};
})