bchoppr 1.12.2 -> 1.12.6 https://github.com/sjaehn/bchoppr/releases attrpath: bchoppr Checking auto update branch... No auto update branch exists Old version 1.12.2" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, pkg-config, cairo, libX11, lv2 }: stdenv.mkDerivation rec { pname = "bchoppr"; version = "1.12.6"; src = fetchFromGitHub { owner = "sjaehn"; repo = pname; rev = version; sha256 = "sha256-/aLoLUpWu66VKd9lwjli+FZZctblrZUPSEsdYH85HwQ="; fetchSubmodules = true; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ cairo libX11 lv2 ]; installFlags = [ "PREFIX=$(out)" ]; enableParallelBuilding = true; meta = with lib; { homepage = "https://github.com/sjaehn/BChoppr"; description = "An audio stream chopping LV2 plugin"; maintainers = [ maintainers.magnetophon ]; platforms = platforms.linux; license = licenses.gpl3Plus; }; }