This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GNU Make 3.81 | |
Copyright (C) 2006 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. | |
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A | |
PARTICULAR PURPOSE. | |
This program built for i386-apple-darwin11.3.0 | |
Reading makefiles... | |
Reading makefile `Makefile'... | |
Reading makefile `.alias_registry.debug.d' (search path) (don't care) (no ~ expansion)... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ninja -C .deps | |
ninja: Entering directory `.deps' | |
[1/2] cd /Users/nhooyr/code/neovim/.deps && /nix/store/ixmzldxf7rdn8mcslf13a3wnbpr85mq0-cmake-3.6.2/bin/cmake -DREMOVE_FILE_GLOB=/Users/nhooyr/code/neovim/.deps/usr/lib/lib*.dylib* -P /Users/nhooyr/code/neovim/third-party/cmake/RemoveFiles.cmake | |
[2/2] cd /Users/nhooyr/code/neovim/.deps && /nix/store/ixmzldxf7rdn8mcslf13a3wnbpr85mq0-cmake-3.6.2/bin/cmake -E touch .third-party | |
cd build && cmake -G 'Ninja' -DCMAKE_BUILD_TYPE=Debug .. | |
-- Replacing -O3 in CMAKE_C_FLAGS_RELEASE with -O2. | |
-- Unsupported _FORTIFY_SOURCE found, forcing _FORTIFY_SOURCE=1. | |
-- Could NOT find unibilium (missing: UNIBILIUM_LIBRARY) | |
CMake Error at /nix/store/ixmzldxf7rdn8mcslf13a3wnbpr85mq0-cmake-3.6.2/share/cmake-3.6/Modules/FindPackageHandleStandardArgs.cmake:148 (message): | |
Could NOT find LibTermkey (missing: LIBTERMKEY_LIBRARY) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❯ nix-env -i go i | |
replacing old ‘go-1.8-dev’ | |
installing ‘go-1.8-dev’ | |
these derivations will be built: | |
/nix/store/a727hb3cma30sdqzniaf19annig8g9yx-go-1.8-dev.drv | |
building path(s) ‘/nix/store/wmnxy5n179v9a00rc1acpy7v6hkad81b-go-1.8-dev’ | |
unpacking sources | |
unpacking source archive /nix/store/8pkivm9phjffimmiknd9zsds5dqmrwjd-go-4c4201f | |
source root is go-4c4201f | |
patching sources |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
systemd.services = { | |
serveHTTP = { | |
description = "serveHTTP"; | |
wantedBy = [ "multi-user.target" ]; | |
after = [ "network.target" ]; | |
serviceConfig = { | |
Restart = "on-failure"; | |
RestartSec = "1"; | |
StartLimitInterval = "0"; | |
PrivateDevices = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BenchmarkStat-8 1000000 1089 ns/op | |
BenchmarkOpenStat-8 500000 3752 ns/op | |
PASS | |
ok github.com/nhooyr/playground 3.027s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"os" | |
"testing" | |
) | |
var d os.FileInfo | |
var err error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let s:dein = expand('~/.cache/dein/repos/github.com/Shougo/dein.vim', 1) | |
if !isdirectory(s:dein) | |
execute '!mkdir -p' s:dein.'; and git clone https://github.com/Shougo/dein.vim' s:dein | |
endif | |
execute 'set runtimepath+='.s:dein | |
call dein#begin('~/.cache/dein') | |
call dein#add('Shougo/dein.vim') | |
call dein#add('Shougo/deoplete.nvim') | |
call dein#add('zchee/deoplete-go', {'build': 'make'}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curlHTTP2 = lib.addMetaAttrs { priority = -1; } (lib.overrideDerivation (curl.override { | |
http2Support = true; | |
}) (attrs: rec { | |
name = "http2-" + curl.name; | |
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curlHTTP2 = lib.overrideDerivation (curl.override { | |
http2Support = true; | |
}) (attrs: rec { | |
name = "http2-" + curl.name; | |
meta.priority = -1; | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### Testing packages. | |
ok archive/tar 0.045s | |
ok archive/zip 0.077s | |
ok bufio 0.062s | |
ok bytes 0.080s | |
ok compress/bzip2 0.067s | |
ok compress/flate 0.904s | |
ok compress/gzip 0.014s | |
ok compress/lzw 0.004s | |
ok compress/zlib 0.029s |