Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

httping: add libintl to buildInputs on Darwin #48188

Merged
merged 2 commits into from
Oct 14, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pkgs/tools/networking/httping/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ stdenv, fetchurl, gettext, ncurses, openssl
{ stdenv, fetchurl, gettext, libintl, ncurses, openssl
, fftw ? null }:

stdenv.mkDerivation rec {
name = "httping-${version}";
version = "2.5";

src = fetchurl {
url = "https://www.vanheusden.com/httping/${name}.tgz";
url = "https://vanheusden.com/httping/${name}.tgz";
sha256 = "1y7sbgkhgadmd93x1zafqc4yp26ssiv16ni5bbi9vmvvdl55m29y";
};

buildInputs = [ fftw ncurses openssl ];
buildInputs = [ fftw libintl ncurses openssl ];
nativeBuildInputs = [ gettext ];

makeFlags = [
Expand All @@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
];

meta = with stdenv.lib; {
homepage = http://www.vanheusden.com/httping;
homepage = https://vanheusden.com/httping;
description = "ping with HTTP requests";
longDescription = ''
Give httping an url, and it'll show you how long it takes to connect,
Expand All @@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
'';
license = licenses.agpl3;
maintainers = with maintainers; [ rickynils ];
platforms = platforms.linux;
platforms = platforms.linux ++ platforms.darwin;
};
}