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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
378 B
Nix
Raw Normal View History

2018-05-17 12:30:23 +00:00
{ callPackage, ... } @ args:
2020-11-19 20:54:19 +00:00
callPackage ./generic.nix (args // rec {
2018-05-17 12:30:23 +00:00
brand = "Midas";
type = "M32";
2020-11-19 20:54:19 +00:00
version = "4.1";
2023-05-12 09:56:19 +00:00
url = "https://mediadl.musictribe.com/download/software/midas_${type}/${type}-Edit_LINUX_${version}.tar.gz";
2020-11-19 20:54:19 +00:00
sha256 = "0aqhdrxqa49liyvbbw5x32kwk0h1spzvmizmdxklrfs64vvr9bvh";
homepage = "https://midasconsoles.com/midas/product?modelCode=P0B3I";
2018-05-17 12:30:23 +00:00
})