diff --git a/cook.sh b/cook.sh
index f82a619cfdbb0e48748b614b8891e5faddf6609f..a1c6ba80150a4a19766457797e3685d935a8d370 100755
--- a/cook.sh
+++ b/cook.sh
@@ -2,6 +2,7 @@
 
 export RUST_TARGET_PATH=`realpath targets`
 export RUSTFLAGS="--cfg redox"
+export CARGOFLAGS=
 TARGET=x86_64-unknown-redox
 
 set -e
@@ -15,7 +16,7 @@ then
         case "$2" in
             build)
                 pushd build
-                xargo build --target "$TARGET"
+                xargo build --target "$TARGET" $CARGOFLAGS
                 popd
                 ;;
             clean)
diff --git a/recipes/sodium/recipe.sh b/recipes/sodium/recipe.sh
new file mode 100644
index 0000000000000000000000000000000000000000..8839dd45cb9586ec1173df05837f122c3a42ec57
--- /dev/null
+++ b/recipes/sodium/recipe.sh
@@ -0,0 +1,2 @@
+GIT=https://github.com/redox-os/sodium.git
+CARGOFLAGS="--features orbital"