Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b32a2844ca68
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0be35abecdff
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 19, 2020

  1. m/x32edit: 3.2 -> 4.1

    magnetophon committed Nov 19, 2020
    Copy the full SHA
    248be69 View commit details

Commits on Nov 24, 2020

  1. Merge pull request #104319 from magnetophon/m32edit

    m/x32edit: 3.2 -> 4.1
    symphorien authored Nov 24, 2020
    Copy the full SHA
    0be35ab View commit details
Showing with 12 additions and 10 deletions.
  1. +2 −2 pkgs/applications/audio/midas/generic.nix
  2. +5 −4 pkgs/applications/audio/midas/m32edit.nix
  3. +5 −4 pkgs/applications/audio/midas/x32edit.nix
4 changes: 2 additions & 2 deletions pkgs/applications/audio/midas/generic.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, lib, libX11, libXext, alsaLib, freetype, brand, type, version, homepage, sha256, ... }:
{ stdenv, fetchurl, lib, libX11, libXext, alsaLib, freetype, brand, type, version, homepage, url, sha256, ... }:
stdenv.mkDerivation rec {
inherit type;
baseName = "${type}-Edit";
name = "${lib.toLower baseName}-${version}";

src = fetchurl {
url = "http://downloads.music-group.com/software/behringer/${type}/${type}-Edit_LINUX_64bit_${version}.tar.gz";
inherit url;
inherit sha256;
};

9 changes: 5 additions & 4 deletions pkgs/applications/audio/midas/m32edit.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{ callPackage, ... } @ args:

callPackage ./generic.nix (args // {
callPackage ./generic.nix (args // rec {
brand = "Midas";
type = "M32";
version = "3.2";
sha256 = "1cds6qinz37086l6pmmgrzrxadygjr2z96sjjyznnai2wz4z2nrd";
homepage = "http://www.musictri.be/Categories/Midas/Mixers/Digital/M32/p/P0B3I/downloads";
version = "4.1";
url = "https://mediadl.musictribe.com/download/software/midas_${type}/${type}-Edit_LINUX_64-Bit_${version}.tar.gz";
sha256 = "0aqhdrxqa49liyvbbw5x32kwk0h1spzvmizmdxklrfs64vvr9bvh";
homepage = "https://midasconsoles.com/midas/product?modelCode=P0B3I";
})
9 changes: 5 additions & 4 deletions pkgs/applications/audio/midas/x32edit.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{ callPackage, ... } @ args:

callPackage ./generic.nix (args // {
callPackage ./generic.nix (args // rec {
brand = "Behringer";
type = "X32";
version = "3.2";
sha256 = "1lzmhd0sqnlzc0khpwm82sfi48qhv7rg153a57qjih7hhhy41mzk";
homepage = "http://www.musictri.be/Categories/Behringer/Mixers/Digital/X32/p/P0ASF/downloads";
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";
})