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

39 lines
1.0 KiB
Nix
Raw Normal View History

2015-09-23 16:45:45 -07:00
{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper }:
2014-11-23 11:42:22 -08:00
with rustPlatform;
buildRustPackage rec {
2015-09-23 16:45:45 -07:00
name = "racer-${version}";
2017-01-27 03:22:30 -08:00
version = "2.0.5";
2015-09-23 16:45:45 -07:00
src = fetchFromGitHub {
owner = "phildawes";
repo = "racer";
2017-01-27 03:22:30 -08:00
rev = "93eac5cd633c937a05d4138559afe6fb054c7c28";
sha256 = "0smp5dv0f5bymficrg0dz8h9x4lhklrz6f31fbcy0vhg8l70di2n";
2014-11-23 11:42:22 -08:00
};
2017-01-27 03:22:30 -08:00
depsSha256 = "1qq2fpjg1wfb7z2s8p4i2aw9swcpqsp9m5jmhbyvwnd281ag4z6a";
buildInputs = [ makeWrapper ];
preCheck = ''
export RUST_SRC_PATH="${rustPlatform.rust.rustc.src}/src"
'';
2014-11-23 11:42:22 -08:00
doCheck = true;
2014-11-23 11:42:22 -08:00
installPhase = ''
mkdir -p $out/bin
cp -p target/release/racer $out/bin/
wrapProgram $out/bin/racer --set RUST_SRC_PATH "${rustPlatform.rust.rustc.src}/src"
2014-11-23 11:42:22 -08:00
'';
2014-11-27 12:06:07 -08:00
meta = with stdenv.lib; {
2015-04-28 01:54:58 -07:00
description = "A utility intended to provide Rust code completion for editors and IDEs";
2014-11-23 11:42:22 -08:00
homepage = https://github.com/phildawes/racer;
license = stdenv.lib.licenses.mit;
2015-09-23 16:45:45 -07:00
maintainers = with maintainers; [ jagajaga globin ];
2016-07-14 02:46:57 -07:00
platforms = platforms.all;
2014-11-23 11:42:22 -08:00
};
}