3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/interpreters/evcxr/default.nix

32 lines
1 KiB
Nix
Raw Normal View History

{ cargo, fetchFromGitHub, makeWrapper, pkgconfig, rustPlatform, stdenv, gcc, Security, cmake }:
2019-04-28 03:08:23 +01:00
rustPlatform.buildRustPackage rec {
pname = "evcxr";
version = "0.5.3";
2019-04-28 03:08:23 +01:00
src = fetchFromGitHub {
owner = "google";
repo = "evcxr";
rev = "v${version}";
sha256 = "144xqi19d2nj9qgmhpx6d1kfhx9vfkmk7rnq6nzybpx4mbbl3ki2";
2019-04-28 03:08:23 +01:00
};
cargoSha256 = "07lzxh0wh6azrlzfaacg29zmkn8jdnkdqbwgd5ajy79y8nii3c7z";
2019-04-28 03:08:23 +01:00
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
'';
2019-04-28 03:08:23 +01:00
meta = with stdenv.lib; {
description = "An evaluation context for Rust";
2019-04-28 03:08:23 +01:00
homepage = "https://github.com/google/evcxr";
license = licenses.asl20;
maintainers = with maintainers; [ protoben ma27 ];
platforms = platforms.all;
2019-04-28 03:08:23 +01:00
};
}