Merge pull request #177235 from marsam/update-ncspot

ncspot: 0.9.8 -> 0.10.0

authored by Mario Rodas and committed by GitHub dcb619ae d141ee34

+6 -6
+6 -6
pkgs/applications/audio/ncspot/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, rustPlatform, pkg-config, ncurses, openssl, libiconv 1 + { stdenv, lib, fetchFromGitHub, rustPlatform, pkg-config, ncurses, openssl 2 2 , withALSA ? true, alsa-lib 3 3 , withPulseAudio ? false, libpulseaudio 4 4 , withPortAudio ? false, portaudio ··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "ncspot"; 10 - version = "0.9.8"; 10 + version = "0.10.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "hrkfdn"; 14 14 repo = "ncspot"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-lrEIFPi55aP9utAaMIFtqocpkbDXRJqS/jlGUtE26kE="; 16 + sha256 = "sha256-lZ7wFhXJ9I4IcHLLoyMTnq3MJDtUNcVdMHYLThuN7c8="; 17 17 }; 18 18 19 - cargoSha256 = "sha256-vkNGQ3SXKJpUqDZ4TfmlSleAPAOQnsEncE8475NLJ4M="; 19 + cargoSha256 = "sha256-JLNB196GWpLyCrZ8fBH8+1RF1fa6PhdwFw6RW3fUARM="; 20 20 21 21 nativeBuildInputs = [ pkg-config ]; 22 22 23 - buildInputs = [ ncurses openssl ] 24 - ++ lib.optional stdenv.isDarwin libiconv 23 + buildInputs = [ ncurses ] 24 + ++ lib.optional stdenv.isLinux openssl 25 25 ++ lib.optional withALSA alsa-lib 26 26 ++ lib.optional withPulseAudio libpulseaudio 27 27 ++ lib.optional withPortAudio portaudio