0c842e7620
- cautious-file: updated to version 1.0.1 - hmatrix: updated to version 0.14.0.1 - random-fu: updated to version 0.2.2.0 - resourcet: added version 0.3.0 - sendfile: updated to version 0.7.6 - test-framework: added version 0.6 svn path=/nixpkgs/trunk/; revision=33354
19 lines
506 B
Nix
19 lines
506 B
Nix
{ cabal, network }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "sendfile";
|
|
version = "0.7.6";
|
|
sha256 = "0wqbnr07s3g7f6p4x27ips9nzjjz1ii5hw1q54i31g40jzv8rs7z";
|
|
buildDepends = [ network ];
|
|
meta = {
|
|
homepage = "http://patch-tag.com/r/mae/sendfile";
|
|
description = "A portable sendfile library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|