nixpkgs/pkgs/tools/misc/shadowenv/default.nix

35 lines
1 KiB
Nix
Raw Normal View History

2020-04-08 09:20:00 +00:00
{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security }:
2019-10-04 09:20:00 +00:00
rustPlatform.buildRustPackage rec {
pname = "shadowenv";
2020-06-11 18:39:27 +00:00
version = "2.0.3";
2019-10-04 09:20:00 +00:00
src = fetchFromGitHub {
owner = "Shopify";
repo = pname;
rev = version;
2020-06-11 18:39:27 +00:00
sha256 = "1h8hfyxxl4bpx8azzxj0snmzccn6xjd9vc2iyp8i2ar7aiyhf5yd";
2019-10-04 09:20:00 +00:00
};
2020-06-11 18:39:27 +00:00
cargoSha256 = "1bjkwn57vm3in8lajhm7p9fjwyqhmkrb3fyq1k7lqjvrrh9jysb2";
2020-04-08 09:20:00 +00:00
nativeBuildInputs = [ installShellFiles ];
2019-10-04 09:20:00 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
2020-04-08 09:20:00 +00:00
postInstall = ''
installManPage man/man1/shadowenv.1
installManPage man/man5/shadowlisp.5
installShellCompletion --bash sh/completions/shadowenv.bash
installShellCompletion --fish sh/completions/shadowenv.fish
installShellCompletion --zsh sh/completions/_shadowenv
2020-04-08 09:20:00 +00:00
'';
2019-10-04 09:20:00 +00:00
meta = with stdenv.lib; {
homepage = "https://shopify.github.io/shadowenv/";
description = "reversible directory-local environment variable manipulations";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}