2019-08-11 16:06:47 +01:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, llvmPackages, darwin }:
|
2019-04-11 20:59:12 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-expand";
|
2019-12-26 20:40:20 +00:00
|
|
|
version = "0.4.17";
|
2019-04-11 20:59:12 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dtolnay";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-12-26 20:40:20 +00:00
|
|
|
sha256 = "043adbvc1slswwygibgghfl2ryry3ja1x3zjz39qqv63f81pd5id";
|
2019-04-11 20:59:12 +01:00
|
|
|
};
|
|
|
|
|
2020-02-16 04:02:52 +00:00
|
|
|
cargoSha256 = "0kwpc62nwjjhlh3rd5d27sjv0p53q5gj0gky9xx9khxy8xazbh91";
|
2019-08-11 16:06:47 +01:00
|
|
|
|
|
|
|
buildInputs = [ llvmPackages.libclang ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
|
|
|
|
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
2019-04-11 20:59:12 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-04-20 07:21:11 +01:00
|
|
|
description = "A utility and Cargo subcommand designed to let people expand macros in their Rust source code";
|
2019-04-11 20:59:12 +01:00
|
|
|
homepage = https://github.com/dtolnay/cargo-expand;
|
|
|
|
license = with licenses; [ mit asl20 ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ xrelkd ];
|
|
|
|
};
|
|
|
|
}
|