nixpkgs/pkgs/development/tools/the-way/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

2020-09-07 05:20:00 +01:00
{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles, AppKit, Security }:
rustPlatform.buildRustPackage rec {
pname = "the-way";
2020-09-07 05:20:00 +01:00
version = "0.7.0";
src = fetchFromGitHub {
owner = "out-of-cheese-error";
repo = pname;
rev = "v${version}";
2020-09-07 05:20:00 +01:00
sha256 = "1whmvzpqm8x1q45mzrp4p40nj251drcryj9z4qjxgjlfsd5d1fxq";
};
2020-09-07 05:20:00 +01:00
nativeBuildInputs = [ installShellFiles ];
2020-07-31 14:00:00 +01:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit Security ];
2020-09-07 05:20:00 +01:00
cargoSha256 = "0adhgp6blwx7s1hlwqzzsgkzc43q9avxx8a9ykvvv2s1w7m9ql78";
2020-09-09 12:39:23 +01:00
checkFlagsArray = stdenv.lib.optionals stdenv.isDarwin [ "--skip=copy" ];
cargoParallelTestThreads = false;
2020-09-07 05:20:00 +01:00
postInstall = ''
$out/bin/the-way config default tmp.toml
for shell in bash fish zsh; do
THE_WAY_CONFIG=tmp.toml $out/bin/the-way complete $shell > the-way.$shell
installShellCompletion the-way.$shell
done
'';
meta = with stdenv.lib; {
description = "Terminal code snippets manager";
homepage = "https://github.com/out-of-cheese-error/the-way";
license = with licenses; [ mit ];
maintainers = with maintainers; [ numkem ];
};
}