Merge pull request #84762 from marsam/update-shadowenv
shadowenv: 1.3.2 -> 2.0.0
This commit is contained in:
commit
f552699cce
|
@ -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";
|
||||||
|
|
Loading…
Reference in New Issue