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

35 lines
1.0 KiB
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security }:
2019-10-04 04:20:00 -05:00
rustPlatform.buildRustPackage rec {
pname = "shadowenv";
2020-06-11 14:39:27 -04:00
version = "2.0.3";
2019-10-04 04:20:00 -05:00
src = fetchFromGitHub {
owner = "Shopify";
repo = pname;
rev = version;
2020-06-11 14:39:27 -04:00
sha256 = "1h8hfyxxl4bpx8azzxj0snmzccn6xjd9vc2iyp8i2ar7aiyhf5yd";
2019-10-04 04:20:00 -05:00
};
cargoSha256 = "1ixjkb82863z160spylza2a5hk82x0c4wjjnzgakbzgrwv29pai3";
2020-04-08 04:20:00 -05:00
nativeBuildInputs = [ installShellFiles ];
2019-10-04 04:20:00 -05:00
2021-01-15 16:19:50 +07:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2019-10-04 04:20:00 -05:00
2020-04-08 04:20:00 -05: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 04:20:00 -05:00
'';
meta = with lib; {
2019-10-04 04:20:00 -05:00
homepage = "https://shopify.github.io/shadowenv/";
description = "reversible directory-local environment variable manipulations";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}