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

33 lines
944 B
Nix
Raw Normal View History

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