aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/the-way/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/tools/the-way/default.nix')
-rw-r--r--nixpkgs/pkgs/development/tools/the-way/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/tools/the-way/default.nix b/nixpkgs/pkgs/development/tools/the-way/default.nix
new file mode 100644
index 00000000000..dce18580577
--- /dev/null
+++ b/nixpkgs/pkgs/development/tools/the-way/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles, AppKit, Security }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "the-way";
+ version = "0.7.0";
+
+ src = fetchFromGitHub {
+ owner = "out-of-cheese-error";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1whmvzpqm8x1q45mzrp4p40nj251drcryj9z4qjxgjlfsd5d1fxq";
+ };
+
+ nativeBuildInputs = [ installShellFiles ];
+
+ buildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit Security ];
+
+ cargoSha256 = "0adhgp6blwx7s1hlwqzzsgkzc43q9avxx8a9ykvvv2s1w7m9ql78";
+ #checkFlags = "--test-threads=1";
+ doCheck = false;
+
+ 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 ];
+ };
+}