nixpkgs/pkgs/development/libraries/haskell/simple-sendfile/default.nix
Peter Simons a30df95691 Re-generate all Haskell packages with the latest version of cabal2nix.
This change brings support for building and running the regressions test suites.
2013-02-25 00:32:40 +01:00

16 lines
536 B
Nix

{ cabal, conduit, hspec, HUnit, network, networkConduit }:
cabal.mkDerivation (self: {
pname = "simple-sendfile";
version = "0.2.11";
sha256 = "1q9m9lxv9jfkn6a1lf07jcl4li3n5996df1qrfkfjq2n0bvn4qfj";
buildDepends = [ network ];
testDepends = [ conduit hspec HUnit network networkConduit ];
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 ];
};
})