summary refs log tree commit diff
path: root/pkgs/tools/networking/surfraw/default.nix
blob: 401e252a294cb2db4bd6f708580765512b7c8a89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{stdenv, fetchurl, perl}:

stdenv.mkDerivation rec {
  name = "surfraw-2.2.9";

  src = fetchurl {
    url = "http://surfraw.alioth.debian.org/dist/surfraw-2.2.9.tar.gz";
    sha256 = "1fy4ph5h9kp0jzj1m6pfylxnnmgdk0mmdppw76z9jhna4jndk5xa";
  };

  configureFlags = [
    "--disable-opensearch"
  ];

  nativeBuildInputs = [ perl ];

  meta = {
    description = "Provides a fast unix command line interface to a variety of popular WWW search engines and other artifacts of power";
    homepage = "http://surfraw.alioth.debian.org";
    maintainers = [];
    platforms = stdenv.lib.platforms.linux;
  };
}