Merge pull request #56428 from Kjuvi/ping-init-0.6.0

ping: init 0.6.0
This commit is contained in:
worldofpeace 2019-03-02 05:25:47 -05:00 committed by GitHub
commit 1560d5fa89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 67 additions and 0 deletions

View file

@ -2458,6 +2458,11 @@
github = "kisonecat";
name = "Jim Fowler";
};
kjuvi = {
email = "quentin.vaucher@pm.me";
github = "kjuvi";
name = "Quentin Vaucher";
};
kkallio = {
email = "tierpluspluslists@gmail.com";
name = "Karn Kallio";

View 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;
};
}

View file

@ -18511,6 +18511,8 @@ in
pijul = callPackage ../applications/version-management/pijul {};
ping = callPackage ../applications/networking/ping { };
piper = callPackage ../os-specific/linux/piper { };
plank = callPackage ../applications/misc/plank { };