nixpkgs/pkgs/applications/audio/midas/x32edit.nix

11 lines
397 B
Nix
Raw Normal View History

2018-05-17 14:30:23 +02:00
{ callPackage, ... } @ args:
2020-11-19 21:54:19 +01:00
callPackage ./generic.nix (args // rec {
2018-05-17 14:30:23 +02:00
brand = "Behringer";
type = "X32";
2020-11-19 21:54:19 +01:00
version = "4.1";
url = "https://mediadl.musictribe.com/download/software/behringer/${type}/${type}-Edit_LINUX_64-Bit_${version}.tar.gz";
sha256 = "0zsw7qfmcci87skkpq8vx5zxk35phn8y4byispvki9ascifnnb33";
homepage = "https://www.behringer.com/behringer/product?modelCode=P0ASF";
2018-05-17 14:30:23 +02:00
})