tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
flex-ndax: use finalAttrs pattern
Mikael Voss
5 months ago
6df05c75
61efba26
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
fl
flex-ndax
package.nix
+4
-4
pkgs/by-name/fl/flex-ndax/package.nix
···
7
7
nix-update-script,
8
8
}:
9
9
10
10
-
buildGoModule rec {
10
10
+
buildGoModule (finalAttrs: {
11
11
pname = "flex-ndax";
12
12
version = "0.5-20250801.0";
13
13
14
14
src = fetchFromGitHub {
15
15
owner = "kc2g-flex-tools";
16
16
repo = "nDAX";
17
17
-
tag = "v${version}";
17
17
+
tag = "v${finalAttrs.version}";
18
18
hash = "sha256-2yHv1FSikQuPamAwSzZB6+ZoblFoD/8Jnvhhv9OO+VY=";
19
19
};
20
20
···
28
28
broken = stdenv.hostPlatform.isDarwin;
29
29
homepage = "https://github.com/kc2g-flex-tools/nDAX";
30
30
description = "FlexRadio digital audio transport (DAX) connector for PulseAudio";
31
31
-
changelog = "https://github.com/kc2g-flex-tools/nDAX/releases/tag/v${version}";
31
31
+
changelog = "https://github.com/kc2g-flex-tools/nDAX/releases/tag/v${finalAttrs.version}";
32
32
license = lib.licenses.mit;
33
33
maintainers = with lib.maintainers; [ mvs ];
34
34
mainProgram = "nDAX";
35
35
};
36
36
-
}
36
36
+
})