mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
a9e2cf0af3
Close #8696. Fixes issues found when jwhois attempts to launch terminal browser (lynx) for HTTP whois queries, for example: $ whois blah.io [Querying http://www.io.io/cgi-bin/whois] [HTTP: Unable to run web browser: /usr/bin/lynx: No such file or directory] Tested via: grep lynx \ /nix/store/bymgmn2vvw1n7nbb1isy87xg94s8f2ml-jwhois-4.0/etc/jwhois.conf \ | cut -f2 -d'"' \ | xargs stat -t
25 lines
617 B
Nix
25 lines
617 B
Nix
{stdenv, lynx, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "jwhois-4.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnu/jwhois/jwhois-4.0.tar.gz;
|
|
sha256 = "0knn7iaj5v0n6jpmldyv2yk4bcy9dn3kywmv63bwc5drh9kvi6zs";
|
|
};
|
|
|
|
postInstall = ''
|
|
ln -s jwhois $out/bin/whois
|
|
sed -i -e "s|/usr/bin/lynx|${lynx}/bin/lynx|g" $out/etc/jwhois.conf
|
|
'';
|
|
|
|
patches = [ ./connect.patch ];
|
|
|
|
meta = {
|
|
description = "A client for the WHOIS protocol allowing you to query the owner of a domain name";
|
|
homepage = http://www.gnu.org/software/jwhois/;
|
|
license = "GPL";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|