mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
* Added jwhois, the GNU whois client.
svn path=/nixpkgs/trunk/; revision=9211
This commit is contained in:
parent
867e7e2847
commit
3ef0b80bdd
18
pkgs/tools/networking/jwhois/default.nix
Normal file
18
pkgs/tools/networking/jwhois/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{stdenv, 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";
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
@ -459,6 +459,10 @@ rec {
|
||||
inherit fetchurl stdenv unzip jre;
|
||||
};
|
||||
|
||||
jwhois = import ../tools/networking/jwhois {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
ktorrent = import ../tools/networking/p2p/ktorrent {
|
||||
inherit fetchurl stdenv pkgconfig kdelibs
|
||||
xlibs zlib libpng libjpeg perl gmp;
|
||||
|
@ -82,6 +82,7 @@ let {
|
||||
jikes
|
||||
jing_tools
|
||||
jrePlugin
|
||||
jwhois
|
||||
kbd
|
||||
kcachegrind
|
||||
kdebase
|
||||
|
Loading…
Reference in New Issue
Block a user