nushellPlugins.skim: 0.8.0 -> 0.9.1

Diff: https://github.com/idanarye/nu_plugin_skim/compare/v0.8.0...v0.9.1
This commit is contained in:
aftix 2024-11-14 17:54:11 -06:00
parent 9e34cf9fd0
commit bf332f885a

View File

@ -13,16 +13,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "nu_plugin_skim"; pname = "nu_plugin_skim";
version = "0.8.0"; version = "0.9.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "idanarye"; owner = "idanarye";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-3q2qt35lZ07N8E3p4/BoYX1H4B8qcKXJWnZhdJhgpJE="; hash = "sha256-cPM4Z1o2ED8Q5u9AcnwBv+SOvuE2C4NO9xC7PfX+ntk=";
}; };
cargoHash = "sha256-+RYrQsB8LVjxZsQ7dVDK6GT6nXSM4b+qpILOe0Q2SjA="; cargoHash = "sha256-93GSnw/3Ms83bYEyRRc2sguUpR7BIWz8hgqzXdU5CF4=";
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ rustPlatform.bindgenHook ]; nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ rustPlatform.bindgenHook ];
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
@ -50,6 +50,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/idanarye/nu_plugin_skim"; homepage = "https://github.com/idanarye/nu_plugin_skim";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ aftix ]; maintainers = with maintainers; [ aftix ];
platforms = with platforms; all; platforms = platforms.all;
}; };
} }