1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/simple-sendfile/default.nix
2013-07-23 14:15:30 +02:00

17 lines
555 B
Nix

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