You need to first install GraalVM, and then set your PATH so that you
get the GraalVM binaries (incluing the GraalVM version of node).
You can then install R and Ruby via
gu -c install org.graalvm.r
gu -c install org.graalvm.ruby
You need to first install GraalVM, and then set your PATH so that you
get the GraalVM binaries (incluing the GraalVM version of node).
You can then install R and Ruby via
gu -c install org.graalvm.r
gu -c install org.graalvm.ruby
This document contains some ideas for additions to the Nix language.
The Nix package manager, Nixpkgs and NixOS currently have several problems:
enableFoo, but there is no way for the Nix
UI to discover them, let alone to provide programmatic ways to| (define-module (my packages) | |
| #:use-module ((guix licenses) #:prefix license:) | |
| #:use-module (gnu packages linux) | |
| #:use-module (guix build-system trivial) | |
| #:use-module (gnu) | |
| #:use-module (guix download) | |
| #:use-module (guix git-download) | |
| #:use-module (guix packages)) | |
| (define (linux-nonfree-urls version) |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <script src="https://unpkg.com/three"></script> | |
| <script | |
| src="https://unpkg.com/three/examples/js/loaders/GLTF2Loader.js" | |
| ></script> | |
| <script src="script.js" defer="defer"></script> | |
| </head> |
| (ns canvas | |
| (:require | |
| [thi.ng.geom.gl.webgl.animator :as anim] | |
| [reagent.core :as reagent])) | |
| (defn canvas-component | |
| [props] | |
| (reagent/create-class | |
| {:component-did-mount | |
| (fn [this] |
Setup your user environment just the way you want with Nix.
Add packageOverrides to the attrset returned by your ${HOME}/.nixpkgs/config.nix (see my example above).
Then with one command you can setup your whole environment: nix-env -i desktop-mbbx6spp.
Then all you need is a simple ~/.bash_profile script like so:
| *.tar.gz | |
| .sentinel.* |
| (def db (atom nil)) | |
| (defn error [e] | |
| (.error js/console "An IndexedDB error has occured!" e)) | |
| (defn new [cb] | |
| (let [version 1 | |
| request (.open js/indexedDB "lokate" version)] | |
| (set! (.-onupgradeneeded request) (fn [e] | |
| (reset! db (.. e -target -result)) |