nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 28 lines 520 B view raw
1{ 2 buildPecl, 3 lib, 4 fetchFromGitHub, 5 libuv, 6}: 7 8buildPecl rec { 9 pname = "uv"; 10 version = "0.3.0"; 11 12 src = fetchFromGitHub { 13 owner = "amphp"; 14 repo = "ext-uv"; 15 rev = "v${version}"; 16 hash = "sha256-RYb7rszHbdTLfBi66o9hVkFwX+7RlcxH5PAw5frjpFg="; 17 }; 18 19 buildInputs = [ libuv ]; 20 21 meta = { 22 description = "Interface to libuv for php"; 23 license = lib.licenses.php301; 24 homepage = "https://github.com/amphp/ext-uv"; 25 teams = [ lib.teams.php ]; 26 platforms = lib.platforms.linux; 27 }; 28}