summaryrefslogtreecommitdiff
path: root/default.nix
blob: 65d93ef0c2d61c058c08e25384b6a5cb238958c0 (plain)
1
2
3
4
5
6
7
8
with import <nixpkgs> {}; 

{
  rustenv = stdenv.mkDerivation {
    name = "rust";
    buildInputs = [ rustStable.rustc rustStable.cargo fuse pkgconfig ];
  };
}