nixpkgs/pkgs/development/libraries/haskell/sendfile/default.nix
Peter Simons fadf3e1f75 haskell-sendfile: updated to version 0.7.5
svn path=/nixpkgs/trunk/; revision=33029
2012-03-13 08:26:25 +00:00

19 lines
506 B
Nix

{ cabal, network }:
cabal.mkDerivation (self: {
pname = "sendfile";
version = "0.7.5";
sha256 = "0gkkxlbl3ci1b973jyksk03400pm8npmsqv81iqs0lwbzc7nxs28";
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
];
};
})