zoxide: cleanup, add SuperSandro2000 as maintainer

This commit is contained in:
Sandro Jäckel 2021-02-12 02:48:09 +01:00
parent 5d42322184
commit 713951893d
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -4,7 +4,6 @@
, rustPlatform
, withFzf ? true
, fzf
# checkInputs
, fish
, powershell
@ -13,12 +12,10 @@
, xonsh
, zsh
}:
let
version = "0.5.0";
in
rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage rec {
pname = "zoxide";
inherit version;
version = "0.5.0";
src = fetchFromGitHub {
owner = "ajeetdsouza";
@ -55,6 +52,6 @@ rustPlatform.buildRustPackage {
description = "A fast cd command that learns your habits";
homepage = "https://github.com/ajeetdsouza/zoxide";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ysndr cole-h ];
maintainers = with maintainers; [ ysndr cole-h SuperSandro2000 ];
};
}