Merge pull request #291912 from siraben/mmv-update-fix

mmv: 2.5.1 -> 2.6
This commit is contained in:
Ben Siraphob
2024-03-01 12:40:07 -05:00
committed by GitHub
+4 -2
View File
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
pname = "mmv";
version = "2.5.1";
version = "2.6";
src = fetchFromGitHub {
owner = "rrthomas";
repo = "mmv";
rev = "v${version}";
sha256 = "sha256-01MJjYVPfDaRkzitqKXTJZHbkkZTEaFoyYZEEMizHp0=";
sha256 = "sha256-hYSTENSmkJP5rAemDyTzbzMKFrWYcMpsJDRWq43etTM=";
fetchSubmodules = true;
};
@@ -19,11 +19,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ gengetopt m4 git gnupg perl autoconf automake help2man pkg-config ];
buildInputs = [ boehmgc ];
enableParallelBuilding = true;
env = lib.optionalAttrs stdenv.cc.isClang {
NIX_CFLAGS_COMPILE = toString [
"-Wno-error=implicit-function-declaration"
"-Wno-error=implicit-int"
"-Wno-error=int-conversion"
];
};