tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rtl_433: 21.12 -> 22.11
Markus Kowalewski
3 years ago
4f0a9675
6638106e
+3
-14
1 changed file
expand all
collapse all
unified
split
pkgs
applications
radio
rtl_433
default.nix
+3
-14
pkgs/applications/radio/rtl_433/default.nix
···
1
1
-
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, fetchpatch
1
1
+
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
2
2
, libusb1, rtl-sdr, soapysdr-with-plugins
3
3
}:
4
4
5
5
stdenv.mkDerivation rec {
6
6
-
version = "21.12";
6
6
+
version = "22.11";
7
7
pname = "rtl_433";
8
8
9
9
src = fetchFromGitHub {
10
10
owner = "merbanan";
11
11
repo = "rtl_433";
12
12
rev = version;
13
13
-
sha256 = "sha256-KoDKyI7KDdGSe79ZTuL9ObKnOJsqTN4wrMq+/cvQ/Xk=";
13
13
+
sha256 = "sha256-qDY+prdf8O/dqmAgLU6lpsNIvL1R5V2AwsB+4CpOqGM=";
14
14
};
15
15
16
16
-
patches = [( fetchpatch {
17
17
-
name = "CVE-2022-27419";
18
18
-
url = "https://github.com/merbanan/rtl_433/commit/37455483889bd1c641bdaafc493d1cc236b74904.patch";
19
19
-
sha256 = "172jndh8x5nlcbx2jp5y8fgfxsawwfz95037pcjp170gf93ijy88";
20
20
-
}) ( fetchpatch {
21
21
-
name = "CVE-2022-25051";
22
22
-
url = "https://github.com/merbanan/rtl_433/commit/2dad7b9fc67a1d0bfbe520fbd821678b8f8cc7a8.patch";
23
23
-
sha256 = "sha256-IfxwdnuA7WbaVdxMTln069mA5hKNuPz+XYQaNA4YY24=";
24
24
-
})];
25
25
-
26
16
nativeBuildInputs = [ pkg-config cmake ];
27
17
28
18
buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];
···
36
26
maintainers = with maintainers; [ earldouglas markuskowa ];
37
27
platforms = platforms.all;
38
28
};
39
39
-
40
29
}