mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 02:46:28 +00:00
26 lines
657 B
Nix
26 lines
657 B
Nix
|
{ lib
|
||
|
, fetchFromGitHub
|
||
|
, rustPlatform
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "atuin";
|
||
|
version = "0.7.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "ellie";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-jjGP8YeHnEr0f9RONwA6wZT872C0jXTvSRdt9zAu6KE=";
|
||
|
};
|
||
|
|
||
|
cargoSha256 = "0vy6q3hjp374lyg00zxim8aplh83iq3f4rrmpz5vnpwbag1fdql3";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Replacement for a shell history which records additional commands context with optional encrypted synchronization between machines";
|
||
|
homepage = "https://github.com/ellie/atuin";
|
||
|
license = licenses.mit;
|
||
|
maintainers = [ maintainers.onsails ];
|
||
|
};
|
||
|
}
|