tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
m/x32edit: 3.2 -> 4.1
Bart Brouns
5 years ago
248be693
b036f389
+12
-10
3 changed files
expand all
collapse all
unified
split
pkgs
applications
audio
midas
generic.nix
m32edit.nix
x32edit.nix
+2
-2
pkgs/applications/audio/midas/generic.nix
···
1
1
-
{ stdenv, fetchurl, lib, libX11, libXext, alsaLib, freetype, brand, type, version, homepage, sha256, ... }:
1
1
+
{ stdenv, fetchurl, lib, libX11, libXext, alsaLib, freetype, brand, type, version, homepage, url, sha256, ... }:
2
2
stdenv.mkDerivation rec {
3
3
inherit type;
4
4
baseName = "${type}-Edit";
5
5
name = "${lib.toLower baseName}-${version}";
6
6
7
7
src = fetchurl {
8
8
-
url = "http://downloads.music-group.com/software/behringer/${type}/${type}-Edit_LINUX_64bit_${version}.tar.gz";
8
8
+
inherit url;
9
9
inherit sha256;
10
10
};
11
11
+5
-4
pkgs/applications/audio/midas/m32edit.nix
···
1
1
{ callPackage, ... } @ args:
2
2
3
3
-
callPackage ./generic.nix (args // {
3
3
+
callPackage ./generic.nix (args // rec {
4
4
brand = "Midas";
5
5
type = "M32";
6
6
-
version = "3.2";
7
7
-
sha256 = "1cds6qinz37086l6pmmgrzrxadygjr2z96sjjyznnai2wz4z2nrd";
8
8
-
homepage = "http://www.musictri.be/Categories/Midas/Mixers/Digital/M32/p/P0B3I/downloads";
6
6
+
version = "4.1";
7
7
+
url = "https://mediadl.musictribe.com/download/software/midas_${type}/${type}-Edit_LINUX_64-Bit_${version}.tar.gz";
8
8
+
sha256 = "0aqhdrxqa49liyvbbw5x32kwk0h1spzvmizmdxklrfs64vvr9bvh";
9
9
+
homepage = "https://midasconsoles.com/midas/product?modelCode=P0B3I";
9
10
})
+5
-4
pkgs/applications/audio/midas/x32edit.nix
···
1
1
{ callPackage, ... } @ args:
2
2
3
3
-
callPackage ./generic.nix (args // {
3
3
+
callPackage ./generic.nix (args // rec {
4
4
brand = "Behringer";
5
5
type = "X32";
6
6
-
version = "3.2";
7
7
-
sha256 = "1lzmhd0sqnlzc0khpwm82sfi48qhv7rg153a57qjih7hhhy41mzk";
8
8
-
homepage = "http://www.musictri.be/Categories/Behringer/Mixers/Digital/X32/p/P0ASF/downloads";
6
6
+
version = "4.1";
7
7
+
url = "https://mediadl.musictribe.com/download/software/behringer/${type}/${type}-Edit_LINUX_64-Bit_${version}.tar.gz";
8
8
+
sha256 = "0zsw7qfmcci87skkpq8vx5zxk35phn8y4byispvki9ascifnnb33";
9
9
+
homepage = "https://www.behringer.com/behringer/product?modelCode=P0ASF";
9
10
})