Merge pull request #299100 from natsukium/csvlens/update

csvlens: 0.7.0 -> 0.8.1
This commit is contained in:
OTABI Tomoya 2024-03-26 21:59:13 +09:00 committed by GitHub
commit ae73d02176
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,20 +1,26 @@
{ lib { lib
, stdenv
, darwin
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "csvlens"; pname = "csvlens";
version = "0.7.0"; version = "0.8.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "YS-L"; owner = "YS-L";
repo = "csvlens"; repo = "csvlens";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-b8SuXx1uN9lBrCoEDLeudZwylHu+f2i/PQkfHA56YlE="; hash = "sha256-4lKiqojBF8mqAp56eTDfJcK276IzEDLA3pORKIZpC94=";
}; };
cargoHash = "sha256-SPUEK+8rLXBR8cdxN3qUajvN6PxbAZX2i7vYcyMzqyw="; buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.AppKit
];
cargoHash = "sha256-EzM7qGor/B17N4KDTsQzgiV4pgXE2D47RZcrmKVkPu8=";
meta = with lib; { meta = with lib; {
description = "Command line csv viewer"; description = "Command line csv viewer";