a2jmidid: update upstream data

jopejoe1 79e53d87 7b8f8499

+11 -7
+11 -7
pkgs/applications/audio/a2jmidid/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, makeWrapper, pkg-config, alsa-lib, dbus, libjack2 2 - , python3Packages , meson, ninja }: 1 + { lib, stdenv, fetchFromGitea, makeWrapper, pkg-config, alsa-lib, dbus, libjack2 2 + , python3Packages , meson, ninja, gitUpdater }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "a2jmidid"; 6 6 version = "9"; 7 7 8 - src = fetchFromGitHub { 9 - owner = "linuxaudio"; 10 - repo = pname; 8 + src = fetchFromGitea { 9 + domain = "gitea.ladish.org"; 10 + owner = "LADI"; 11 + repo = "a2jmidid"; 11 12 rev = version; 12 - sha256 = "sha256-WNt74tSWV8bY4TnpLp86PsnrjkqWynJJt3Ra4gZl2fQ="; 13 + hash = "sha256-WNt74tSWV8bY4TnpLp86PsnrjkqWynJJt3Ra4gZl2fQ="; 13 14 }; 14 15 15 16 nativeBuildInputs = [ pkg-config makeWrapper meson ninja ]; ··· 21 22 substituteInPlace $out/bin/a2j --replace "a2j_control" "$out/bin/a2j_control" 22 23 ''; 23 24 25 + passthru.updateScript = gitUpdater { }; 26 + 24 27 meta = with lib; { 25 28 description = "Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system"; 26 - license = licenses.gpl2; 29 + homepage = "https://a2jmidid.ladish.org/"; 30 + license = licenses.gpl2Only; 27 31 maintainers = [ maintainers.goibhniu ]; 28 32 platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; 29 33 };