Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f0ac1596a1f9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8fe859533952
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 15, 2020

  1. rtl_433: 20.02 -> 20.11

    Also change to using cmake for the build (this is best supported by
    upstream) and enable the automated tests for rtl_433.
    
    The description could also use some love, so improved that as well.
    Mindavi committed Nov 15, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    956ba19 View commit details

Commits on Nov 24, 2020

  1. Merge pull request #103936 from Mindavi/rtl-433/20.11

    rtl_433: 20.02 -> 20.11
    SuperSandro2000 authored Nov 24, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8fe8595 View commit details
Showing with 9 additions and 8 deletions.
  1. +9 −8 pkgs/applications/radio/rtl_433/default.nix
17 changes: 9 additions & 8 deletions pkgs/applications/radio/rtl_433/default.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
{ stdenv, fetchFromGitHub, cmake, pkgconfig
, libusb1, rtl-sdr, soapysdr-with-plugins
}:

stdenv.mkDerivation {

version = "20.02";
stdenv.mkDerivation rec {
version = "20.11";
pname = "rtl_433";

src = fetchFromGitHub {
owner = "merbanan";
repo = "rtl_433";
rev = "20.02";
sha256 = "11991xky9gawkragdyg27qsf7kw5bhlg7ygvf3fn7ng00x4xbh1z";
rev = version;
sha256 = "093bxjxkg7yf78wqj5gpijbfa2p05ny09qqsj84kzi1svnzsa369";
};

nativeBuildInputs = [ autoreconfHook pkgconfig ];
nativeBuildInputs = [ pkgconfig cmake ];

buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];

doCheck = true;

meta = with stdenv.lib; {
description = "Decode traffic from devices that broadcast on 433.9 MHz";
description = "Decode traffic from devices that broadcast on 433.9 MHz, 868 MHz, 315 MHz, 345 MHz and 915 MHz";
homepage = "https://github.com/merbanan/rtl_433";
license = licenses.gpl2;
maintainers = with maintainers; [ earldouglas ];