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

18 lines
483 B
Nix
Raw Normal View History

{ cabal, network }:
cabal.mkDerivation (self: {
pname = "simple-sendfile";
version = "0.1.3";
sha256 = "0n78d6bn2hsm3p6r2kc2cr5nf9v1vqs6v5i9x71f910r3kk2grm8";
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
self.stdenv.lib.maintainers.simons
];
};
})