31 lines
994 B
Nix
31 lines
994 B
Nix
{ cargo, fetchFromGitHub, makeWrapper, pkgconfig, rustPlatform, stdenv, gcc, Security, cmake }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "evcxr";
|
|
version = "0.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "evcxr";
|
|
rev = "v${version}";
|
|
sha256 = "144xqi19d2nj9qgmhpx6d1kfhx9vfkmk7rnq6nzybpx4mbbl3ki2";
|
|
};
|
|
|
|
cargoSha256 = "07lzxh0wh6azrlzfaacg29zmkn8jdnkdqbwgd5ajy79y8nii3c7z";
|
|
|
|
nativeBuildInputs = [ pkgconfig makeWrapper cmake ];
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
|
postInstall = ''
|
|
wrapProgram $out/bin/evcxr --prefix PATH : ${stdenv.lib.makeBinPath [ cargo gcc ]}
|
|
wrapProgram $out/bin/evcxr_jupyter --prefix PATH : ${stdenv.lib.makeBinPath [ cargo gcc ]}
|
|
rm $out/bin/testing_runtime
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An evaluation context for Rust";
|
|
homepage = "https://github.com/google/evcxr";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ protoben ma27 ];
|
|
};
|
|
}
|