Skip to content

Instantly share code, notes, and snippets.

|Time | 192.99.15.220 |
| | | 192.168.2.15 |
|0.000000000| Data | |TOX: Data
| |(33445) ------------------> (33445) |
|0.050289000| Data | |TOX: Data
| |(33445) ------------------> (33445) |
|1.006913000| Data | |TOX: Data
| |(33445) ------------------> (33445) |
|2.014028000| Data | |TOX: Data
| |(33445) ------------------> (33445) |
@cleverca22
cleverca22 / chromium
Last active March 2, 2016 10:29
nixos crashes
(gdb) bt
#0 0x00007f423b50639d in poll () from /nix/store/n2wxp513rr00f6hr2dy0waqahns49dch-glibc-2.21/lib/libc.so.6
#1 0x00007f4237d6a2f2 in _xcb_conn_wait () from /nix/store/vs9shdrh50iaqmrrph92gk8pmfg9chwp-libxcb-1.11.1/lib/libxcb.so.1
#2 0x00007f4237d6bbdf in wait_for_reply () from /nix/store/vs9shdrh50iaqmrrph92gk8pmfg9chwp-libxcb-1.11.1/lib/libxcb.so.1
#3 0x00007f4237d6bcd1 in xcb_wait_for_reply () from /nix/store/vs9shdrh50iaqmrrph92gk8pmfg9chwp-libxcb-1.11.1/lib/libxcb.so.1
#4 0x00007f424018979f in _XReply () from /nix/store/p73fhs21mai1akmk4z6y3ax6kpv4zmy5-libX11-1.6.3/lib/libX11.so.6
#5 0x00007f4239a6d2b3 in DRI2GetBuffersWithFormat () from /run/opengl-driver/lib/libGL.so.1
#6 0x00007f4239a6d5b9 in dri2GetBuffersWithFormat () from /run/opengl-driver/lib/libGL.so.1
#7 0x00007f422bb7127b in dri2_allocate_textures () from /run/opengl-driver/lib/dri/radeonsi_dri.so
#8 0x00007f422bb6ddea in dri_st_framebuffer_validate () from /run/opengl-driver/lib/dri/radeonsi_dri.so
services = {
bind = {
enable = true;
cacheNetworks = [ "192.168.2.0/24" "127.0.0.0/8" ];
zones = [
{
name = "localnet";
slaves = [ ];
file = ./localnet;
}
if exists user-class and option user-class = "iPXE" {
filename "http://192.168.2.61/test/script.ipxe";
} else {
filename = "undionly.kpxe";
}
with import <nixpkgs> {};
{
webcore = callPackage ./webcore.nix {};
webapp1 = callPackage ./webapp1.nix {};
}
nix-build root.nix --arg input ./output.json -A everything.mekanism
mkdir -pv $out/repository/{$DIR1,$DIR2}
function tryfetch {
if [ ! -e "$2" ] ; then
echo trying "$1"
curl -fk "$1" > "$2" || (echo failed; rm "$2")
else
true
fi
}
for mirror in $mirrors; do
nixpkgs.config = {
sqlite.interactive = true;
packageOverrides = (import ./overrides.nix).packageOverrides;
};
{
allowUnfree = true;
pulseaudio = true;
packageOverrides = pkgs: rec {
mystuff = with pkgs; buildEnv {
name = "mystuff";
paths = [
#ffmpeg-full
wireshark iperf bind tigervnc (pkgs.callPackage ./multimc.nix {}) ];
};
{ stdenv, cmake, pkgconfig, libbsd, nasm, udev, fetchFromGitHub, clang, gnustepbase }:
stdenv.mkDerivation {
name = "libobjc2";
src = fetchFromGitHub {
owner = "gnustep";
repo = "libobjc2";
rev = "2ea11117a392646d960f1e861494e2f27873b15b";
sha256 = "0blbl4k94ll10qq1c0p35dqgr5029ap9kca5h6zx5ws1pg6p35v1";
};