nixpkgs/pkgs/development/tools/rust/racer/default.nix

31 lines
848 B
Nix
Raw Normal View History

{stdenv, fetchgit, rustc, cargo, makeWrapper }:
2014-11-23 19:42:22 +00:00
stdenv.mkDerivation rec {
#TODO add emacs support
name = "racer-git-2015-01-20";
2014-11-23 19:42:22 +00:00
src = fetchgit {
url = https://github.com/phildawes/racer;
rev = "599aa524ea949ec5f9f0be0375dbb1df9cb852ae";
sha256 = "1kasm7vffn176wr072m1dmqg1rb3wqai9yisxf8mia62548pdx88";
2014-11-23 19:42:22 +00:00
};
buildInputs = [ rustc cargo makeWrapper ];
buildPhase = ''
cargo build --release
'';
2014-11-23 19:42:22 +00:00
installPhase = ''
mkdir -p $out/bin
cp -p target/release/racer $out/bin/
wrapProgram $out/bin/racer --set RUST_SRC_PATH "${rustc.src}/src"
2014-11-23 19:42:22 +00:00
'';
2014-11-27 20:06:07 +00:00
meta = with stdenv.lib; {
description = "A utility intended to provide Rust code completion for editors and IDEs.";
2014-11-23 19:42:22 +00:00
homepage = https://github.com/phildawes/racer;
license = stdenv.lib.licenses.mit;
2014-11-27 20:06:07 +00:00
maintainers = [ maintainers.jagajaga ];
2014-11-23 19:42:22 +00:00
};
}