$ git clone [email protected]:musitdev/portmidi-rs.git
$ nix-shell midi-looper.nix -A midiLooperEnv
$ cd portmidi-rs
$ cargo run --example play
Last active
May 29, 2016 11:19
-
-
Save rexim/ebb0af015521d5c28a8ad33955837c74 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
pkgs = import <nixpkgs> {}; | |
stdenv = pkgs.stdenv; | |
in rec { | |
midiLooperEnv = stdenv.mkDerivation rec { | |
name = "midi-looper-env"; | |
version = "0.0.1"; | |
src = ./.; | |
buildInputs = [ pkgs.rustc pkgs.cargo pkgs.portmidi ]; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment