nixpkgs/pkgs/development/interpreters/evcxr/default.nix

31 lines
944 B
Nix
Raw Normal View History

{ cargo, fetchFromGitHub, makeWrapper, pkgconfig, rustPlatform, stdenv, gcc, Security, zeromq }:
2019-04-28 02:08:23 +00:00
rustPlatform.buildRustPackage rec {
pname = "evcxr";
version = "0.4.3";
2019-04-28 02:08:23 +00:00
src = fetchFromGitHub {
owner = "google";
repo = "evcxr";
rev = "v${version}";
sha256 = "08zsdl6pkg6dx7k0ns8cd070v7ydsxkscd2ms8wh9r68c08vwzcp";
2019-04-28 02:08:23 +00:00
};
cargoSha256 = "1hqlagwl94xcybfqq5h2mrz9296mjns2l598d6jclls7ac5wsdfc";
2019-04-28 02:08:23 +00:00
nativeBuildInputs = [ pkgconfig makeWrapper ];
buildInputs = [ zeromq ] ++ stdenv.lib.optional stdenv.isDarwin Security;
postInstall = ''
wrapProgram $out/bin/evcxr --prefix PATH : ${stdenv.lib.makeBinPath [ cargo gcc ]}
rm $out/bin/testing_runtime
'';
2019-04-28 02:08:23 +00:00
meta = {
description = "An evaluation context for Rust";
2019-04-28 02:08:23 +00:00
homepage = "https://github.com/google/evcxr";
license = stdenv.lib.licenses.asl20;
maintainers = [ stdenv.lib.maintainers.protoben ];
platforms = stdenv.lib.platforms.all;
};
}