mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
ping: init at 0.6.0
ping: init at 0.6.0 Update pkgs/development/web/ping/default.nix Co-Authored-By: Kjuvi <quentin.vaucher@protonmail.com> Update pkgs/development/web/ping/default.nix Co-Authored-By: Kjuvi <quentin.vaucher@protonmail.com> Update pkgs/development/web/ping/default.nix Co-Authored-By: Kjuvi <quentin.vaucher@protonmail.com> Update pkgs/development/web/ping/default.nix Co-Authored-By: Kjuvi <quentin.vaucher@protonmail.com> Update pkgs/development/web/ping/default.nix Co-Authored-By: Kjuvi <quentin.vaucher@protonmail.com> Update maintainers/maintainer-list.nix Co-Authored-By: Kjuvi <quentin.vaucher@protonmail.com> Update maintainer-list.nix ping: init at 0.6.0
This commit is contained in:
parent
0c89c444a2
commit
80dd94d4c0
58
pkgs/development/web/ping/default.nix
Normal file
58
pkgs/development/web/ping/default.nix
Normal file
@ -0,0 +1,58 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, meson
|
||||
, ninja
|
||||
, pkgconfig
|
||||
, pantheon
|
||||
, python3
|
||||
, gtk3
|
||||
, gtksourceview
|
||||
, 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;
|
||||
};
|
||||
}
|
@ -9016,6 +9016,8 @@ in
|
||||
|
||||
phantomjs2 = libsForQt5.callPackage ../development/tools/phantomjs2 { };
|
||||
|
||||
ping = callPackages ../development/web/ping { };
|
||||
|
||||
pmccabe = callPackage ../development/tools/misc/pmccabe { };
|
||||
|
||||
pkgconf = callPackage ../development/tools/misc/pkgconf {};
|
||||
|
Loading…
Reference in New Issue
Block a user