nixpkgs/pkgs/development/libraries/haskell/simple-sendfile/default.nix
Peter Simons 3eac2b5f88 haskell-simple-sendfile: updated to version 0.1.3
svn path=/nixpkgs/trunk/; revision=30135
2011-10-30 16:06:42 +00:00

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
];
};
})