Skip to content
Snippets Groups Projects
Commit 86896617 authored by Daniel Firth's avatar Daniel Firth
Browse files

simple-sendfile: init at 0.2.30

parent 425843fc
Branches
No related merge requests found
...@@ -470,6 +470,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -470,6 +470,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "servant-static-th" "1.0.0.0" , callHackage "servant-static-th" "1.0.0.0"
, callHackage "shake" "0.19.6" , callHackage "shake" "0.19.6"
, callHackage "shelly" "1.10.0" , callHackage "shelly" "1.10.0"
, callHackage "simple-sendfile" "0.2.30"
, callHackage "singleton-bool" "0.1.6" , callHackage "singleton-bool" "0.1.6"
, callHackage "singletons" "3.0.2" , callHackage "singletons" "3.0.2"
, callHackage "slugify" "0.1.0.1" , callHackage "slugify" "0.1.0.1"
......
...@@ -597,6 +597,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -597,6 +597,8 @@ final: prev: with pkgs.haskell.lib; {
shelly = prev.callPackage (./pkgs/shelly.nix) { }; shelly = prev.callPackage (./pkgs/shelly.nix) { };
simple-sendfile = prev.callPackage (./pkgs/simple-sendfile.nix) { };
singleton-bool = prev.callPackage (./pkgs/singleton-bool.nix) { }; singleton-bool = prev.callPackage (./pkgs/singleton-bool.nix) { };
singletons = prev.callPackage (./pkgs/singletons.nix) { }; singletons = prev.callPackage (./pkgs/singletons.nix) { };
......
{ mkDerivation
, base
, bytestring
, conduit
, conduit-extra
, directory
, hspec
, HUnit
, lib
, network
, process
, resourcet
, unix
}:
mkDerivation {
pname = "simple-sendfile";
version = "0.2.30";
sha256 = "b6864d2b3c62ff8ea23fa24e9e26f751bfe5253c8efb1f1e4fee2ba91d065284";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring network unix ];
testHaskellDepends = [
base
bytestring
conduit
conduit-extra
directory
hspec
HUnit
network
process
resourcet
unix
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Cross platform library for the sendfile system call";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment