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