- [Checker Framework][checker]
- FIXME: description
- [Derive4J][derive4j]
- FIXME: description
- [hkt][hkt]
- FIXME: description
- [junit-quickcheck][junit-qc]
- FIXME: description
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
{ system ? builtins.currentSystem }: | |
# In order to update `nixpkgs.json` to a specific revision, run: | |
# | |
# ```bash | |
# $ nix-prefetch-git https://github.com/NixOS/nixpkgs.git "${REVISION}" > nixpkgs.json | |
# ``` | |
with rec { | |
builtin-paths = import <nix/config.nix>; |
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
with builtins; | |
rec { | |
pkgs = import <nixpkgs> {}; | |
testGHC = pkgs.haskellPackages.ghcWithPackages (p: with p; [ | |
base base-orphans bifunctors comonad contravariant distributive | |
tagged transformers | |
]); |
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
# FIXME: replace @NIX_RUSTRACER@ and @NIX_RUSTC@ using `substituteAllInPlace` | |
# and pkgs.runCommand | |
{ pkgs }: | |
pkgs.vim_configurable.customize { | |
name = "vim"; | |
vimrcConfig = { | |
customRC = builtins.readFile ./vimrc; | |
vam.pluginDictionaries = [ { |
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
{config,pkgs,...}: | |
let | |
myVim = pkgs.vim_configurable.customize { | |
name = "vim"; | |
vimrcConfig = { | |
customRC = '' | |
syntax on | |
set nu | |
set foldmethod=syntax |
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
{-# LANGUAGE OverloadedStrings #-} | |
module Main where | |
import Prelude hiding (FilePath) | |
import Control.Foldl (list) | |
import Control.Arrow |
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
diff --git a/src/corelib/global/qglobal.cpp b/src/corelib/global/qglobal.cpp | |
index 48dbadb..fa7b719 100644 | |
--- a/src/corelib/global/qglobal.cpp | |
+++ b/src/corelib/global/qglobal.cpp | |
@@ -133,7 +133,7 @@ Q_STATIC_ASSERT_X(QT_POINTER_SIZE == sizeof(void *), "QT_POINTER_SIZE defined in | |
/*! | |
\fn QFlag::QFlag(uint value) | |
- \since Qt 5.3 | |
+ \since 5.3 |
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
#!/usr/bin/env bash | |
# Download this gist to get index.qdocconf and generate-xml.bash | |
git clone https://gist.github.com/taktoa/2ee1253020d81341f7d4377771c418b7 gist | |
source ./gist/generate-xml.bash | |
move ./gist/index.qdocconf . | |
rmDir ./gist | |
# Make a folder called "qtbase" containing a source checkout of qtbase | |
export QT_VERSION="5.6.1-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
#!/usr/bin/env python | |
""" Usage: call with <filename> | |
""" | |
# | |
# Understanding CLang AST : http://clang.llvm.org/docs/IntroductionToTheClangAST.html | |
# | |
# Requirements | |
# | |
# 1. Install Clang : Visit http://llvm.org/releases/download.html | |
# |
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
with rec { | |
pkgs = import <nixpkgs> {}; | |
inherit (pkgs) stdenv gcc-arm-embedded libxml2 ncurses python27Packages; | |
inherit (pkgs) which fetchFromGitHub; | |
}; | |
stdenv.mkDerivation rec { | |
name = "seL4"; | |
src = fetchFromGitHub { |