5 lines
137 B
Nix
5 lines
137 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [ rustup cargo pkg-config xe lzma ];
|
|
}
|