ocenaudio 3.12.6 -> 3.12.7 https://repology.org/project/ocenaudio/versions attrpath: ocenaudio Checking auto update branch... No auto update branch exists Old version 3.12.6" not present in master derivation file with contents: { stdenv , lib , fetchurl , autoPatchelfHook , dpkg , qt5 , libjack2 , alsa-lib , bzip2 , libpulseaudio }: stdenv.mkDerivation rec { pname = "ocenaudio"; version = "3.12.7"; src = fetchurl { url = "https://www.ocenaudio.com/downloads/index.php/ocenaudio_debian9_64.deb?version=${version}"; sha256 = "sha256-+D/JvC0emKdxzd0l2n1QZ0geosrMpdpaxru5z61kqxA="; }; nativeBuildInputs = [ autoPatchelfHook qt5.qtbase qt5.wrapQtAppsHook libjack2 libpulseaudio bzip2 alsa-lib ]; buildInputs = [ dpkg ]; dontUnpack = true; dontBuild = true; dontStrip = true; installPhase = '' mkdir -p $out dpkg -x $src $out cp -av $out/opt/ocenaudio/* $out rm -rf $out/opt # Create symlink bzip2 library ln -s ${bzip2.out}/lib/libbz2.so.1 $out/lib/libbz2.so.1.0 ''; meta = with lib; { description = "Cross-platform, easy to use, fast and functional audio editor"; homepage = "https://www.ocenaudio.com"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; platforms = [ "x86_64-linux" ]; maintainers = with maintainers; [ onny ]; }; }