nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #172195 from Riey/cargo-feature

cargo-feature: 0.6.0 -> 0.7.0

authored by

Bobby Rong and committed by
GitHub
90bd7d73 b428db12

+4 -4
+4 -4
pkgs/development/tools/rust/cargo-feature/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-feature"; 5 - version = "0.6.0"; 5 + version = "0.7.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Riey"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-9TP67YtvRtgLtsKACL5xjXq5kZtYpTWsTqQsbOKPwtY="; 11 + sha256 = "sha256-UPpqkz/PwoMaJan9itfldjyTmZmiMb6PzCyu9Vtjj1s="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-MkLsQebQdqfUuARIdQZg47kMPudstJUgRQgUuovoLes="; 14 + cargoSha256 = "sha256-8qrpW/gU7BvxN3nSbFWhbgu5bwsdzYZTS3w3kcwsGbU="; 15 15 16 16 buildInputs = lib.optional stdenv.isDarwin libiconv; 17 17 18 18 meta = with lib; { 19 - description = "Allows conveniently modify features of crate"; 19 + description = "Cargo plugin to manage dependency features"; 20 20 homepage = "https://github.com/Riey/cargo-feature"; 21 21 license = licenses.mit; 22 22 platforms = platforms.unix;