mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
rainicorn: init at 1.0.0
This commit is contained in:
parent
e57b658049
commit
841d7e157b
24
pkgs/development/tools/rust/rainicorn/default.nix
Normal file
24
pkgs/development/tools/rust/rainicorn/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper }:
|
||||||
|
|
||||||
|
with rustPlatform;
|
||||||
|
|
||||||
|
buildRustPackage rec {
|
||||||
|
name = "rainicorn-${version}";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "RustDT";
|
||||||
|
repo = "Rainicorn";
|
||||||
|
rev = "0f8594079a7f302f4940cc4320f5e4f39f95cdc4";
|
||||||
|
sha256 = "07vh4g120sx569wkzclq91blkkd7q7z582pl8vz0li1l9ij8md01";
|
||||||
|
};
|
||||||
|
|
||||||
|
depsSha256 = "1ckrf77s1glrqi0gvrv9wqmip4i97dk0arn0iz87jg4q2wfss85k";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Rust IDEs. parse-analysis";
|
||||||
|
homepage = https://github.com/RustDT/Rainicorn;
|
||||||
|
license = with licenses; [ mit asl20 ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -5554,6 +5554,7 @@ in
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
rainicorn = callPackage ../development/tools/rust/rainicorn { };
|
||||||
rustfmt = callPackage ../development/tools/rust/rustfmt { };
|
rustfmt = callPackage ../development/tools/rust/rustfmt { };
|
||||||
rustracer = callPackage ../development/tools/rust/racer { };
|
rustracer = callPackage ../development/tools/rust/racer { };
|
||||||
rustracerd = callPackage ../development/tools/rust/racerd { };
|
rustracerd = callPackage ../development/tools/rust/racerd { };
|
||||||
|
Loading…
Reference in New Issue
Block a user