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: 3dbe656a25fe
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9ce2291c2c00
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 3, 2021

  1. wavemon: 0.9.2 -> 0.9.3

    dywedir committed Jan 3, 2021
    Copy the full SHA
    8a80f39 View commit details
  2. Merge pull request #108290 from dywedir/wavemon

    wavemon: 0.9.2 -> 0.9.3
    prusnak authored Jan 3, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9ce2291 View commit details
Showing with 5 additions and 6 deletions.
  1. +5 −6 pkgs/tools/networking/wavemon/default.nix
11 changes: 5 additions & 6 deletions pkgs/tools/networking/wavemon/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{ stdenv, fetchFromGitHub, ncurses, libnl, pkgconfig }:
{ stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }:

stdenv.mkDerivation rec {
version = "0.9.2";
baseName = "wavemon";
name = "${baseName}-${version}";
pname = "wavemon";
version = "0.9.3";

nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ ncurses libnl ];

src = fetchFromGitHub {
owner = "uoaerg";
repo = "wavemon";
rev = "v${version}";
sha256 = "0y984wm03lzqf7bk06a07mw7d1fzjsp9x7zxcvlx4xqmv7wlgb29";
sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193";
};

meta = with stdenv.lib; {