Merge pull request #122169 from onsails/atuin

This commit is contained in:
Sandro 2021-05-11 01:20:39 +02:00 committed by GitHub
commit 124eb1c9d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 0 deletions

View file

@ -7429,6 +7429,12 @@
githubId = 1538622;
name = "Michael Reilly";
};
onsails = {
email = "andrey@onsails.com";
github = "onsails";
githubId = 107261;
name = "Andrey Kuznetsov";
};
onny = {
email = "onny@project-insanity.org";
github = "onny";

View file

@ -0,0 +1,25 @@
{ 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 ];
};
}

View file

@ -156,6 +156,8 @@ in
antsimulator = callPackage ../games/antsimulator { };
atuin = callPackage ../tools/misc/atuin { };
fiche = callPackage ../servers/fiche { };
fishnet = callPackage ../servers/fishnet { };