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: da6cbc3a445b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 01eb4cd70e95
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 4, 2018

  1. rtl_433: 2018-02-23 -> 18.05 (#44453)

    markuskowa authored and xeji committed Aug 4, 2018
    Copy the full SHA
    01eb4cd View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/misc/rtl_433/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/misc/rtl_433/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libusb1, rtl-sdr }:
stdenv.mkDerivation rec {

version = "2018-02-23";
version = "18.05";
name = "rtl_433-${version}";

src = fetchFromGitHub {
owner = "merbanan";
repo = "rtl_433";
rev = "51d275c";
sha256 = "1j443wmws5xgc18s47bvw3pqljk747izypz52rmlrvs16v96cg2g";
rev = "18.05";
sha256 = "0vfhnjyrx6w1m8g1hww5vdz4zgdlhcaps9g0397mxlki4sm77wpc";
};

nativeBuildInputs = [ autoreconfHook pkgconfig ];