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

35 lines
1 KiB
Nix
Raw Normal View History

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