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