9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
23 lines
519 B
Nix
23 lines
519 B
Nix
{ buildPecl, lib, fetchFromGitHub, libuv }:
|
|
|
|
buildPecl rec {
|
|
pname = "uv";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "amphp";
|
|
repo = "ext-uv";
|
|
rev = "v${version}";
|
|
hash = "sha256-RYb7rszHbdTLfBi66o9hVkFwX+7RlcxH5PAw5frjpFg=";
|
|
};
|
|
|
|
buildInputs = [ libuv ];
|
|
|
|
meta = with lib; {
|
|
description = "Interface to libuv for php";
|
|
license = licenses.php301;
|
|
homepage = "https://github.com/amphp/ext-uv";
|
|
maintainers = teams.php.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|