2023-03-31 09:58:57 +02:00
|
|
|
# Atuin package definition
|
|
|
|
#
|
|
|
|
# This file will be similar to the package definition in nixpkgs:
|
2024-03-05 11:02:57 +01:00
|
|
|
# https://github.com/NixOS/nixpkgs/blob/master/pkgs/by-name/at/atuin/package.nix
|
2023-03-31 09:58:57 +02:00
|
|
|
#
|
|
|
|
# Helpful documentation: https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks/rust.section.md
|
2023-02-15 10:04:07 +01:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
installShellFiles,
|
|
|
|
rustPlatform,
|
|
|
|
libiconv,
|
|
|
|
Security,
|
|
|
|
SystemConfiguration,
|
2023-10-30 09:18:26 +01:00
|
|
|
AppKit,
|
2024-05-08 13:09:04 +02:00
|
|
|
protobuf,
|
2023-02-15 10:04:07 +01:00
|
|
|
}:
|
2023-03-31 09:58:57 +02:00
|
|
|
rustPlatform.buildRustPackage {
|
2023-02-15 10:04:07 +01:00
|
|
|
name = "atuin";
|
|
|
|
|
|
|
|
src = lib.cleanSource ./.;
|
|
|
|
|
2023-03-31 09:58:57 +02:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
# Allow dependencies to be fetched from git and avoid having to set the outputHashes manually
|
|
|
|
allowBuiltinFetchGit = true;
|
|
|
|
};
|
2023-02-15 10:04:07 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [installShellFiles];
|
|
|
|
|
2024-05-08 13:09:04 +02:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [libiconv Security SystemConfiguration AppKit protobuf];
|
|
|
|
|
|
|
|
env.PROTOC = lib.getExe' protobuf "protoc";
|
2023-02-15 10:04:07 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --cmd atuin \
|
|
|
|
--bash <($out/bin/atuin gen-completions -s bash) \
|
|
|
|
--fish <($out/bin/atuin gen-completions -s fish) \
|
|
|
|
--zsh <($out/bin/atuin gen-completions -s zsh)
|
|
|
|
'';
|
|
|
|
|
2024-01-29 13:44:06 +01:00
|
|
|
doCheck = false;
|
2023-07-28 09:49:42 +02:00
|
|
|
|
2023-02-15 10:04:07 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Replacement for a shell history which records additional commands context with optional encrypted synchronization between machines";
|
2023-07-31 00:08:00 +02:00
|
|
|
homepage = "https://github.com/atuinsh/atuin";
|
2023-02-15 10:04:07 +01:00
|
|
|
license = licenses.mit;
|
2024-03-05 11:02:57 +01:00
|
|
|
mainProgram = "atuin";
|
2023-02-15 10:04:07 +01:00
|
|
|
};
|
|
|
|
}
|