songrec: 0.2.1 -> 0.3.0

Also add new dbus dependency

authored by Ryan Burns and committed by Jonathan Ringer 5aaf3d7b 59add637

+5 -4
+5 -4
pkgs/applications/audio/songrec/default.nix
··· 6 , alsa-lib 7 , pkg-config 8 , ffmpeg 9 }: 10 11 rustPlatform.buildRustPackage rec { 12 pname = "songrec"; 13 - version = "0.2.1"; 14 15 src = fetchFromGitHub { 16 owner = "marin-m"; 17 repo = pname; 18 rev = version; 19 - sha256 = "sha256-pKHKM4XOuuZCr4neMe1AVqWMuZghwYNe+ifJCQhXG/c="; 20 }; 21 22 - cargoSha256 = "sha256-J3ezXBOGJwzIPTHXujHpswsgh9PFy110AOQ2pPJNm10="; 23 24 nativeBuildInputs = [ pkg-config ]; 25 26 - buildInputs = [ alsa-lib gtk3 openssl ffmpeg ]; 27 28 postInstall = '' 29 mv packaging/rootfs/usr/share $out/share
··· 6 , alsa-lib 7 , pkg-config 8 , ffmpeg 9 + , dbus 10 }: 11 12 rustPlatform.buildRustPackage rec { 13 pname = "songrec"; 14 + version = "0.3.0"; 15 16 src = fetchFromGitHub { 17 owner = "marin-m"; 18 repo = pname; 19 rev = version; 20 + sha256 = "sha256-aHZH3sQNUUPcMRySy8Di0XUoFo4qjGi2pi0phLwORaA="; 21 }; 22 23 + cargoSha256 = "sha256-EpkB43rMUJO6ouUV9TmQ+RSnGhX32DZHpKic1E6lUyU="; 24 25 nativeBuildInputs = [ pkg-config ]; 26 27 + buildInputs = [ alsa-lib dbus gtk3 openssl ffmpeg ]; 28 29 postInstall = '' 30 mv packaging/rootfs/usr/share $out/share