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
-
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, fetchpatch
2
, libusb1, rtl-sdr, soapysdr-with-plugins
3
}:
4
5
stdenv.mkDerivation rec {
6
-
version = "21.12";
7
pname = "rtl_433";
8
9
src = fetchFromGitHub {
10
owner = "merbanan";
11
repo = "rtl_433";
12
rev = version;
13
-
sha256 = "sha256-KoDKyI7KDdGSe79ZTuL9ObKnOJsqTN4wrMq+/cvQ/Xk=";
14
};
15
16
-
patches = [( fetchpatch {
17
-
name = "CVE-2022-27419";
18
-
url = "https://github.com/merbanan/rtl_433/commit/37455483889bd1c641bdaafc493d1cc236b74904.patch";
19
-
sha256 = "172jndh8x5nlcbx2jp5y8fgfxsawwfz95037pcjp170gf93ijy88";
20
-
}) ( fetchpatch {
21
-
name = "CVE-2022-25051";
22
-
url = "https://github.com/merbanan/rtl_433/commit/2dad7b9fc67a1d0bfbe520fbd821678b8f8cc7a8.patch";
23
-
sha256 = "sha256-IfxwdnuA7WbaVdxMTln069mA5hKNuPz+XYQaNA4YY24=";
24
-
})];
25
-
26
nativeBuildInputs = [ pkg-config cmake ];
27
28
buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];
···
36
maintainers = with maintainers; [ earldouglas markuskowa ];
37
platforms = platforms.all;
38
};
39
-
40
}
···
1
+
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
2
, libusb1, rtl-sdr, soapysdr-with-plugins
3
}:
4
5
stdenv.mkDerivation rec {
6
+
version = "22.11";
7
pname = "rtl_433";
8
9
src = fetchFromGitHub {
10
owner = "merbanan";
11
repo = "rtl_433";
12
rev = version;
13
+
sha256 = "sha256-qDY+prdf8O/dqmAgLU6lpsNIvL1R5V2AwsB+4CpOqGM=";
14
};
15
0
0
0
0
0
0
0
0
0
0
16
nativeBuildInputs = [ pkg-config cmake ];
17
18
buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];
···
26
maintainers = with maintainers; [ earldouglas markuskowa ];
27
platforms = platforms.all;
28
};
0
29
}