wavemon: 0.9.3 -> 0.9.4

+19 -7
+19 -7
pkgs/tools/networking/wavemon/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , libnl 5 + , ncurses 6 + , pkg-config 7 + }: 2 8 3 9 stdenv.mkDerivation rec { 4 10 pname = "wavemon"; 5 - version = "0.9.3"; 6 - 7 - nativeBuildInputs = [ pkg-config ]; 8 - buildInputs = [ ncurses libnl ]; 11 + version = "0.9.4"; 9 12 10 13 src = fetchFromGitHub { 11 14 owner = "uoaerg"; 12 15 repo = "wavemon"; 13 16 rev = "v${version}"; 14 - sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193"; 17 + sha256 = "0s3yz15vzx90fxyb8bgryksn0cr2gpz9inbcx4qjrgs7zfbm4pgh"; 15 18 }; 16 19 20 + nativeBuildInputs = [ 21 + pkg-config 22 + ]; 23 + 24 + buildInputs = [ 25 + libnl 26 + ncurses 27 + ]; 28 + 17 29 meta = with lib; { 18 30 description = "Ncurses-based monitoring application for wireless network devices"; 19 31 homepage = "https://github.com/uoaerg/wavemon"; 20 32 license = licenses.gpl3Plus; 21 33 maintainers = with maintainers; [ raskin fpletz ]; 22 - platforms = lib.platforms.linux; 34 + platforms = platforms.linux; 23 35 }; 24 36 }