racer: git-2015-05-18 -> 1.0.0
This commit is contained in:
parent
fd5a4f0a9c
commit
2d3537fbf2
@ -1,17 +1,18 @@
|
|||||||
{stdenv, fetchgit, rustPlatform, makeWrapper }:
|
{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper }:
|
||||||
|
|
||||||
with rustPlatform;
|
with rustPlatform;
|
||||||
|
|
||||||
buildRustPackage rec {
|
buildRustPackage rec {
|
||||||
#TODO add emacs support
|
name = "racer-${version}";
|
||||||
name = "racer-git-2015-05-18";
|
version = "1.0.0";
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = https://github.com/phildawes/racer;
|
owner = "phildawes";
|
||||||
rev = "c2d31ed49baa11f06ffc0c7bc8f95dd00037d035";
|
repo = "racer";
|
||||||
sha256 = "0g420cbqpknhl61a4mpk3bbia8agf657d9vzzcqr338lmni80qz7";
|
rev = "v${version}";
|
||||||
|
sha256 = "1b6829nqx0sqw1akcid61izw8mah1dfx2nxldkmmg4scnydhvw1l";
|
||||||
};
|
};
|
||||||
|
|
||||||
depsSha256 = "0s951apqcr96lvc1jamk6qw3631gwnlnfgcx55vlznfm7shnmywn";
|
depsSha256 = "1hfqr1kidl77lq3djbhfn37whvv6k0hg9g5gcnl6pgl6kn669hdc";
|
||||||
|
|
||||||
buildInputs = [ makeWrapper ];
|
buildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
@ -24,13 +25,13 @@ buildRustPackage rec {
|
|||||||
cp -p target/release/racer $out/bin/
|
cp -p target/release/racer $out/bin/
|
||||||
wrapProgram $out/bin/racer --set RUST_SRC_PATH "${rustc.src}/src"
|
wrapProgram $out/bin/racer --set RUST_SRC_PATH "${rustc.src}/src"
|
||||||
install -d $out/share/emacs/site-lisp
|
install -d $out/share/emacs/site-lisp
|
||||||
install "editors/"*.el $out/share/emacs/site-lisp
|
install "editors/emacs/"*.el $out/share/emacs/site-lisp
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A utility intended to provide Rust code completion for editors and IDEs";
|
description = "A utility intended to provide Rust code completion for editors and IDEs";
|
||||||
homepage = https://github.com/phildawes/racer;
|
homepage = https://github.com/phildawes/racer;
|
||||||
license = stdenv.lib.licenses.mit;
|
license = stdenv.lib.licenses.mit;
|
||||||
maintainers = [ maintainers.jagajaga ];
|
maintainers = with maintainers; [ jagajaga globin ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user