3eac2b5f88
svn path=/nixpkgs/trunk/; revision=30135
18 lines
483 B
Nix
18 lines
483 B
Nix
{ 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
|
|
];
|
|
};
|
|
})
|