Skip to content

Instantly share code, notes, and snippets.

@evils
evils / welke.sh
Last active April 18, 2021 23:38
dutch which
welke () {
readlink -f "$(command -v "${1}")"
}
@evils
evils / coreboot-shell.nix
Last active May 10, 2020 14:22
environment required to build minimal coreboot image
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# these are not valid for Ada and the warnings emmited about this stop the compilation
hardeningDisable = [ "format" ];
nativeBuildInputs = with pkgs; [
m4 bison flex zlib
gmp libmpc mpfr isl