2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
2016-09-08 20:56:42 +00:00
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
|
|
|
|
buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "rainicorn";
|
2016-09-08 20:56:42 +00:00
|
|
|
version = "1.0.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "RustDT";
|
|
|
|
repo = "Rainicorn";
|
|
|
|
rev = "0f8594079a7f302f4940cc4320f5e4f39f95cdc4";
|
|
|
|
sha256 = "07vh4g120sx569wkzclq91blkkd7q7z582pl8vz0li1l9ij8md01";
|
|
|
|
};
|
|
|
|
|
2019-05-25 11:03:08 +00:00
|
|
|
cargoSha256 = "07zsj12g4ff0cdb9pwz302vxvajr8g6nl3bpz4vdyi84csfvmahz";
|
2016-09-08 20:56:42 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-05 14:38:48 +00:00
|
|
|
broken = true;
|
2016-09-08 20:56:42 +00:00
|
|
|
description = "Rust IDEs. parse-analysis";
|
|
|
|
homepage = https://github.com/RustDT/Rainicorn;
|
|
|
|
license = with licenses; [ mit asl20 ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|