mamba: 2.3 -> 2.6

+4 -6
+4 -6
pkgs/applications/audio/mamba/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 3 4 , pkg-config 4 5 , xxd ··· 14 15 15 16 stdenv.mkDerivation rec { 16 17 pname = "mamba"; 17 - version = "2.3"; 18 + version = "2.6"; 18 19 19 20 src = fetchFromGitHub { 20 21 owner = "brummer10"; 21 22 repo = "Mamba"; 22 23 rev = "v${version}"; 23 - sha256 = "sha256-Dj8yPmuEtDVgu6Gm6aEY+dgJ0dtwB8RPg9EuaVAsiIs="; 24 + hash = "sha256-S1+nGnB1LHIUgYves0qtWh+QXYKjtKWICpOo38b3zbY="; 24 25 fetchSubmodules = true; 25 26 }; 26 27 ··· 37 38 license = licenses.bsd0; 38 39 maintainers = with maintainers; [ magnetophon orivej ]; 39 40 platforms = platforms.linux; 40 - # 2023-08-19, `-Werror=format-security` fails for xputty 41 - # reported as https://github.com/brummer10/libxputty/issues/12 42 - broken = true; 43 41 }; 44 42 }