mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
commit
1560d5fa89
3 changed files with 67 additions and 0 deletions
|
@ -2458,6 +2458,11 @@
|
||||||
github = "kisonecat";
|
github = "kisonecat";
|
||||||
name = "Jim Fowler";
|
name = "Jim Fowler";
|
||||||
};
|
};
|
||||||
|
kjuvi = {
|
||||||
|
email = "quentin.vaucher@pm.me";
|
||||||
|
github = "kjuvi";
|
||||||
|
name = "Quentin Vaucher";
|
||||||
|
};
|
||||||
kkallio = {
|
kkallio = {
|
||||||
email = "tierpluspluslists@gmail.com";
|
email = "tierpluspluslists@gmail.com";
|
||||||
name = "Karn Kallio";
|
name = "Karn Kallio";
|
||||||
|
|
60
pkgs/applications/networking/ping/default.nix
Normal file
60
pkgs/applications/networking/ping/default.nix
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkgconfig
|
||||||
|
, pantheon
|
||||||
|
, python3
|
||||||
|
, glib
|
||||||
|
, gtk3
|
||||||
|
, gtksourceview
|
||||||
|
, hicolor-icon-theme
|
||||||
|
, json-glib
|
||||||
|
, libsoup
|
||||||
|
, libgee
|
||||||
|
, wrapGAppsHook }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "ping";
|
||||||
|
version = "0.6.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jeremyvaartjes";
|
||||||
|
repo = "ping";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1h9cdy2jxa2ffykjg89j21hazls32z9yyv3g0x07x3vizzl5xcij";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pantheon.vala
|
||||||
|
pkgconfig
|
||||||
|
python3
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
glib
|
||||||
|
gtk3
|
||||||
|
gtksourceview
|
||||||
|
hicolor-icon-theme
|
||||||
|
json-glib
|
||||||
|
libgee
|
||||||
|
libsoup
|
||||||
|
pantheon.granite
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
chmod +x meson/post_install.py
|
||||||
|
patchShebangs meson/post_install.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A helpful tool that lets you debug what part of your API is causing you issues";
|
||||||
|
homepage = https://github.com/jeremyvaartjes/ping;
|
||||||
|
maintainers = with maintainers; [ kjuvi ] ++ pantheon.maintainers;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
};
|
||||||
|
}
|
|
@ -18511,6 +18511,8 @@ in
|
||||||
|
|
||||||
pijul = callPackage ../applications/version-management/pijul {};
|
pijul = callPackage ../applications/version-management/pijul {};
|
||||||
|
|
||||||
|
ping = callPackage ../applications/networking/ping { };
|
||||||
|
|
||||||
piper = callPackage ../os-specific/linux/piper { };
|
piper = callPackage ../os-specific/linux/piper { };
|
||||||
|
|
||||||
plank = callPackage ../applications/misc/plank { };
|
plank = callPackage ../applications/misc/plank { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue