nixpkgs/pkgs/development/libraries/haskell/simple-sendfile/default.nix
Peter Simons d9c27a4387 haskell-simple-sendfile: updated to version 0.2.0
svn path=/nixpkgs/trunk/; revision=31095
2011-12-26 15:36:27 +00:00

18 lines
483 B
Nix

{ cabal, network }:
cabal.mkDerivation (self: {
pname = "simple-sendfile";
version = "0.2.0";
sha256 = "1rsbmlnks4q8gsfzwqwcj901b8hzcrfb85z7wy3szj4h0axw4264";
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
];
};
})