m/x32edit: 3.2 -> 4.1

+12 -10
+2 -2
pkgs/applications/audio/midas/generic.nix
··· 1 - { stdenv, fetchurl, lib, libX11, libXext, alsaLib, freetype, brand, type, version, homepage, sha256, ... }: 2 stdenv.mkDerivation rec { 3 inherit type; 4 baseName = "${type}-Edit"; 5 name = "${lib.toLower baseName}-${version}"; 6 7 src = fetchurl { 8 - url = "http://downloads.music-group.com/software/behringer/${type}/${type}-Edit_LINUX_64bit_${version}.tar.gz"; 9 inherit sha256; 10 }; 11
··· 1 + { stdenv, fetchurl, lib, libX11, libXext, alsaLib, freetype, brand, type, version, homepage, url, sha256, ... }: 2 stdenv.mkDerivation rec { 3 inherit type; 4 baseName = "${type}-Edit"; 5 name = "${lib.toLower baseName}-${version}"; 6 7 src = fetchurl { 8 + inherit url; 9 inherit sha256; 10 }; 11
+5 -4
pkgs/applications/audio/midas/m32edit.nix
··· 1 { callPackage, ... } @ args: 2 3 - callPackage ./generic.nix (args // { 4 brand = "Midas"; 5 type = "M32"; 6 - version = "3.2"; 7 - sha256 = "1cds6qinz37086l6pmmgrzrxadygjr2z96sjjyznnai2wz4z2nrd"; 8 - homepage = "http://www.musictri.be/Categories/Midas/Mixers/Digital/M32/p/P0B3I/downloads"; 9 })
··· 1 { callPackage, ... } @ args: 2 3 + callPackage ./generic.nix (args // rec { 4 brand = "Midas"; 5 type = "M32"; 6 + version = "4.1"; 7 + url = "https://mediadl.musictribe.com/download/software/midas_${type}/${type}-Edit_LINUX_64-Bit_${version}.tar.gz"; 8 + sha256 = "0aqhdrxqa49liyvbbw5x32kwk0h1spzvmizmdxklrfs64vvr9bvh"; 9 + homepage = "https://midasconsoles.com/midas/product?modelCode=P0B3I"; 10 })
+5 -4
pkgs/applications/audio/midas/x32edit.nix
··· 1 { callPackage, ... } @ args: 2 3 - callPackage ./generic.nix (args // { 4 brand = "Behringer"; 5 type = "X32"; 6 - version = "3.2"; 7 - sha256 = "1lzmhd0sqnlzc0khpwm82sfi48qhv7rg153a57qjih7hhhy41mzk"; 8 - homepage = "http://www.musictri.be/Categories/Behringer/Mixers/Digital/X32/p/P0ASF/downloads"; 9 })
··· 1 { callPackage, ... } @ args: 2 3 + callPackage ./generic.nix (args // rec { 4 brand = "Behringer"; 5 type = "X32"; 6 + version = "4.1"; 7 + url = "https://mediadl.musictribe.com/download/software/behringer/${type}/${type}-Edit_LINUX_64-Bit_${version}.tar.gz"; 8 + sha256 = "0zsw7qfmcci87skkpq8vx5zxk35phn8y4byispvki9ascifnnb33"; 9 + homepage = "https://www.behringer.com/behringer/product?modelCode=P0ASF"; 10 })