Merge pull request #84762 from marsam/update-shadowenv

shadowenv: 1.3.2 -> 2.0.0
This commit is contained in:
Mario Rodas 2020-04-09 11:08:36 -05:00 committed by GitHub
commit f552699cce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 4 deletions

View File

@ -1,20 +1,27 @@
{ stdenv, fetchFromGitHub, rustPlatform, Security }: { stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "shadowenv"; pname = "shadowenv";
version = "1.3.2"; version = "2.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Shopify"; owner = "Shopify";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1yapplqy7wmmjh8r5m43na9n2p100k80s7nkaswndyp5ljr9m20l"; sha256 = "1fjqm4qr85wb0i3vazp0w74izfzvkycdii7dlpdp5zs8jgb35pdh";
}; };
cargoSha256 = "1pnfd461i65jd7s8dpfpys4k620w86bv56gkdsyx5lcvhqw1krnr"; cargoSha256 = "1n8qh730nhdmpm08mm2ppcl3nkcgm50cyz9q5h6dlzq4bv4rijp4";
nativeBuildInputs = [ installShellFiles ];
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ]; buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
postInstall = ''
installManPage man/man1/shadowenv.1
installManPage man/man5/shadowlisp.5
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "https://shopify.github.io/shadowenv/"; homepage = "https://shopify.github.io/shadowenv/";
description = "reversible directory-local environment variable manipulations"; description = "reversible directory-local environment variable manipulations";