mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
a06de115e8
* phpExtensions.uv: init at 0.3.0 * Update pkgs/development/php-packages/uv/default.nix --------- Co-authored-by: Joshua Trees <me@jtrees.io> Co-authored-by: Pol Dellaiera <pol.dellaiera@protonmail.com>
24 lines
519 B
Nix
24 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;
|
|
};
|
|
}
|