16 lines
468 B
Nix
16 lines
468 B
Nix
|
{ buildPerlModule, lib, fetchurl, IOAsync, TestMetricsAny, HTTPMessage
|
||
|
, TestIdentity, TestRefcount }:
|
||
|
|
||
|
buildPerlModule {
|
||
|
pname = "Net-Async-HTTP";
|
||
|
version = "0.48";
|
||
|
src = fetchurl {
|
||
|
url =
|
||
|
"mirror://cpan/authors/id/P/PE/PEVANS/Net-Async-HTTP-Server-0.13.tar.gz";
|
||
|
sha256 = "sha256-yk3kcfIieNI5PIqy7G56xO8hfbRjXS3Mi6KoynIhFO4=";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ TestMetricsAny TestIdentity TestRefcount ];
|
||
|
propagatedBuildInputs = [ IOAsync HTTPMessage ];
|
||
|
}
|