mmv: 2.5.1 -> 2.6

This commit is contained in:
R. Ryantm 2024-02-10 09:42:01 +00:00 committed by Ben Siraphob
parent 2394210484
commit 5df62e8e43
No known key found for this signature in database
GPG key ID: 45F0E5D788143267

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"
];
};