Skip to content

Commit

Permalink
httping: add libintl to buildInputs on Darwin (#48188)
Browse files Browse the repository at this point in the history
* httping: add libintl to buildInputs on Darwin

Otherwise it won't compile.

* httping: fix URLs
  • Loading branch information
iwinux authored and c0bw3b committed Oct 14, 2018
1 parent a481306 commit 9f8b40c
Showing 1 changed file with 5 additions and 5 deletions.
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;
};
}

0 comments on commit 9f8b40c

Please sign in to comment.