mamba: 2.3 -> 2.6

+4 -6
+4 -6
pkgs/applications/audio/mamba/default.nix
··· 1 - { lib, stdenv 2 , fetchFromGitHub 3 , pkg-config 4 , xxd ··· 14 15 stdenv.mkDerivation rec { 16 pname = "mamba"; 17 - version = "2.3"; 18 19 src = fetchFromGitHub { 20 owner = "brummer10"; 21 repo = "Mamba"; 22 rev = "v${version}"; 23 - sha256 = "sha256-Dj8yPmuEtDVgu6Gm6aEY+dgJ0dtwB8RPg9EuaVAsiIs="; 24 fetchSubmodules = true; 25 }; 26 ··· 37 license = licenses.bsd0; 38 maintainers = with maintainers; [ magnetophon orivej ]; 39 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 }; 44 }
··· 1 + { lib 2 + , stdenv 3 , fetchFromGitHub 4 , pkg-config 5 , xxd ··· 15 16 stdenv.mkDerivation rec { 17 pname = "mamba"; 18 + version = "2.6"; 19 20 src = fetchFromGitHub { 21 owner = "brummer10"; 22 repo = "Mamba"; 23 rev = "v${version}"; 24 + hash = "sha256-S1+nGnB1LHIUgYves0qtWh+QXYKjtKWICpOo38b3zbY="; 25 fetchSubmodules = true; 26 }; 27 ··· 38 license = licenses.bsd0; 39 maintainers = with maintainers; [ magnetophon orivej ]; 40 platforms = platforms.linux; 41 }; 42 }