tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
azmq: unstable-2023-03-23 -> 1.0.3-unstable-2025-01-19
Marcin Serwin
9 months ago
4f7686ac
0a955a5e
+8
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
az
azmq
package.nix
+8
-3
pkgs/by-name/az/azmq/package.nix
···
7
ninja,
8
zeromq,
9
catch2,
0
10
}:
11
12
stdenv.mkDerivation {
13
pname = "azmq";
14
-
version = "unstable-2023-03-23";
15
16
src = fetchFromGitHub {
17
owner = "zeromq";
18
repo = "azmq";
19
-
rev = "2c1adac46bced4eb74ed9be7c74563bb113eaacf";
20
-
hash = "sha256-4o1CHlg9kociIL6QN/kU2cojPvFRhtjFmKIAz0dapUM=";
21
};
22
23
nativeBuildInputs = [
···
33
34
# Broken for some reason on this platform.
35
doCheck = !(stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux);
0
0
0
0
36
37
meta = with lib; {
38
homepage = "https://github.com/zeromq/azmq";
···
7
ninja,
8
zeromq,
9
catch2,
10
+
unstableGitUpdater,
11
}:
12
13
stdenv.mkDerivation {
14
pname = "azmq";
15
+
version = "1.0.3-unstable-2025-01-19";
16
17
src = fetchFromGitHub {
18
owner = "zeromq";
19
repo = "azmq";
20
+
rev = "4e8f18bf3ac60f5c8126db61e48927ea19a88195";
21
+
hash = "sha256-0TYZvQefoW77RXhQ57niXs3Kcz2YHW9cBDNGFU47BBs=";
22
};
23
24
nativeBuildInputs = [
···
34
35
# Broken for some reason on this platform.
36
doCheck = !(stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux);
37
+
38
+
passthru.updateScript = unstableGitUpdater {
39
+
tagPrefix = "v";
40
+
};
41
42
meta = with lib; {
43
homepage = "https://github.com/zeromq/azmq";