tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
a2jmidid: update upstream data
jopejoe1
2 years ago
79e53d87
7b8f8499
+11
-7
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
a2jmidid
default.nix
+11
-7
pkgs/applications/audio/a2jmidid/default.nix
···
1
1
-
{ lib, stdenv, fetchFromGitHub, makeWrapper, pkg-config, alsa-lib, dbus, libjack2
2
2
-
, python3Packages , meson, ninja }:
1
1
+
{ lib, stdenv, fetchFromGitea, makeWrapper, pkg-config, alsa-lib, dbus, libjack2
2
2
+
, python3Packages , meson, ninja, gitUpdater }:
3
3
4
4
stdenv.mkDerivation rec {
5
5
pname = "a2jmidid";
6
6
version = "9";
7
7
8
8
-
src = fetchFromGitHub {
9
9
-
owner = "linuxaudio";
10
10
-
repo = pname;
8
8
+
src = fetchFromGitea {
9
9
+
domain = "gitea.ladish.org";
10
10
+
owner = "LADI";
11
11
+
repo = "a2jmidid";
11
12
rev = version;
12
12
-
sha256 = "sha256-WNt74tSWV8bY4TnpLp86PsnrjkqWynJJt3Ra4gZl2fQ=";
13
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
25
+
passthru.updateScript = gitUpdater { };
26
26
+
24
27
meta = with lib; {
25
28
description = "Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system";
26
26
-
license = licenses.gpl2;
29
29
+
homepage = "https://a2jmidid.ladish.org/";
30
30
+
license = licenses.gpl2Only;
27
31
maintainers = [ maintainers.goibhniu ];
28
32
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
29
33
};