npins: 0.3.0 -> 0.3.1

[changelog](https://github.com/andir/npins/blob/master/CHANGELOG.md#031)
This commit is contained in:
cinereal 2025-05-08 20:56:17 +02:00
parent 2cd2decd3a
commit 259f125a6e
No known key found for this signature in database

View file

@ -19,17 +19,23 @@ let
in
rustPlatform.buildRustPackage rec {
pname = "npins";
version = "0.3.0";
version = "0.3.1";
src = fetchFromGitHub {
owner = "andir";
repo = "npins";
tag = version;
sha256 = "sha256-nTm6IqCHNFQLU7WR7dJRP7ktBctpE/O2LHbUV25roJA=";
sha256 = "sha256-PPk9Ve1pM3X7NfGeGb8Jiq4YDEwAjErP4xzGwLaakTU=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-HnX7dkWLxa3DARXG8y9OVBRwvwgxwRIs4mWK3VNblG0=";
cargoHash = "sha256-YRW2TqbctuGC2M6euR4bb0m9a19m8WQVvWucRMpzkQE=";
buildNoDefaultFeatures = true;
buildFeatures = [
"clap"
"crossterm"
"env_logger"
];
nativeBuildInputs = [ makeWrapper ];