gnome-nettool: init at 3.8.1

+30 -1
+27
pkgs/desktops/gnome-3/3.16/apps/gnome-nettool/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook 2 + , libgtop, intltool, itstool, libxml2, hicolor_icon_theme 3 + , nmap, inetutils }: 4 + 5 + stdenv.mkDerivation rec { 6 + name = "gnome-nettool-3.8.1"; 7 + 8 + src = fetchurl { 9 + url = "mirror://gnome/sources/gnome-nettool/3.8/${name}.tar.xz"; 10 + sha256 = "1c9cvzvyqgfwa5zzyvp7118pkclji62fkbb33g4y9sp5kw6m397h"; 11 + }; 12 + 13 + buildInputs = [ 14 + pkgconfig gtk3 wrapGAppsHook libgtop intltool itstool libxml2 15 + hicolor_icon_theme 16 + ]; 17 + 18 + propagatedUserEnvPkgs = [ nmap inetutils ]; 19 + 20 + meta = with stdenv.lib; { 21 + homepage = http://projects.gnome.org/gnome-network; 22 + description = "A collection of networking tools"; 23 + maintainers = gnome3.maintainers; 24 + license = licenses.gpl2; 25 + platforms = platforms.linux; 26 + }; 27 + }
+3 -1
pkgs/desktops/gnome-3/3.16/default.nix
··· 31 31 gnome_terminal gnome-user-docs bijiben evolution file-roller gedit 32 32 gnome-clocks gnome-music gnome-tweak-tool gnome-photos 33 33 nautilus-sendto dconf-editor vinagre gnome-weather gnome-logs 34 - gnome-maps gnome-characters gnome-calendar accerciser 34 + gnome-maps gnome-characters gnome-calendar accerciser gnome-nettool 35 35 ]; 36 36 37 37 gamesPackages = with gnome3; [ swell-foop lightsoff iagno ··· 284 284 gnome-maps = callPackage ./apps/gnome-maps { }; 285 285 286 286 gnome-music = callPackage ./apps/gnome-music { }; 287 + 288 + gnome-nettool = callPackage ./apps/gnome-nettool { }; 287 289 288 290 gnome-photos = callPackage ./apps/gnome-photos { 289 291 gegl = gegl_0_3;