tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
flex-ncat: use finalAttrs pattern
Mikael Voss
5 months ago
adfa3fba
08a6e6d4
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
fl
flex-ncat
package.nix
+4
-4
pkgs/by-name/fl/flex-ncat/package.nix
···
5
nix-update-script,
6
}:
7
8
-
buildGoModule rec {
9
pname = "flex-ncat";
10
version = "0.6-20250801.0";
11
12
src = fetchFromGitHub {
13
owner = "kc2g-flex-tools";
14
repo = "nCAT";
15
-
tag = "v${version}";
16
hash = "sha256-l+A7PlckZFGwibMU5QelMzANP1WS5WPApOnQV0P+SGw=";
17
};
18
···
23
meta = {
24
homepage = "https://github.com/kc2g-flex-tools/nCAT";
25
description = "FlexRadio remote control (CAT) via hamlib/rigctl protocol";
26
-
changelog = "https://github.com/kc2g-flex-tools/nCAT/releases/tag/v${version}";
27
license = lib.licenses.mit;
28
maintainers = with lib.maintainers; [ mvs ];
29
mainProgram = "nCAT";
30
};
31
-
}
···
5
nix-update-script,
6
}:
7
8
+
buildGoModule (finalAttrs: {
9
pname = "flex-ncat";
10
version = "0.6-20250801.0";
11
12
src = fetchFromGitHub {
13
owner = "kc2g-flex-tools";
14
repo = "nCAT";
15
+
tag = "v${finalAttrs.version}";
16
hash = "sha256-l+A7PlckZFGwibMU5QelMzANP1WS5WPApOnQV0P+SGw=";
17
};
18
···
23
meta = {
24
homepage = "https://github.com/kc2g-flex-tools/nCAT";
25
description = "FlexRadio remote control (CAT) via hamlib/rigctl protocol";
26
+
changelog = "https://github.com/kc2g-flex-tools/nCAT/releases/tag/v${finalAttrs.version}";
27
license = lib.licenses.mit;
28
maintainers = with lib.maintainers; [ mvs ];
29
mainProgram = "nCAT";
30
};
31
+
})