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