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

Commits on Mar 21, 2018

  1. gqrx: 2.10 -> 2.11.1

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 2.11.1 with grep in /nix/store/f5yrc3hjc7rzc3zg57vss2av1djk6496-gqrx-2.11.1
    - directory tree listing: https://gist.github.com/3716484adfc25ea5af04b853ac010788
    ryantm authored and obadz committed Mar 21, 2018
    Copy the full SHA
    22cd5b9 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/misc/gqrx/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/misc/gqrx/default.nix
Original file line number Diff line number Diff line change
@@ -8,13 +8,13 @@ assert pulseaudioSupport -> libpulseaudio != null;

stdenv.mkDerivation rec {
name = "gqrx-${version}";
version = "2.10";
version = "2.11.1";

src = fetchFromGitHub {
owner = "csete";
repo = "gqrx";
rev = "v${version}";
sha256 = "1qc944sn1kjdnhdhcsdc39764vqcryk86808xxl49vy8sznqr0mf";
sha256 = "06l90m3lx05290lvgghrgqrcg6732p69dvv3bsyw7cyxy3fvdhm6";
};

nativeBuildInputs = [ cmake ];