16 stdenv.mkDerivation rec {
20 src = fetchFromGitHub {
24 hash = "sha256-h+hdrIQz+7jKdMdJtWhBbZgvmNTIOr7Q38nhfAWC+G4=";
25 fetchSubmodules = true;
44 enableParallelBuilding = true;
46 env = lib.optionalAttrs stdenv.cc.isClang {
47 NIX_CFLAGS_COMPILE = toString [
48 "-Wno-error=implicit-function-declaration"
49 "-Wno-error=implicit-int"
50 "-Wno-error=int-conversion"
55 homepage = "https://github.com/rrthomas/mmv";
56 description = "Utility for wildcard renaming, copying, etc";
57 license = lib.licenses.gpl3Plus;
58 platforms = lib.platforms.all;
59 maintainers = with lib.maintainers; [ siraben ];