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

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

  src = fetchurl {
    url = "http://surfraw.alioth.debian.org/dist/surfraw-2.2.8.tar.gz";
    sha256 = "925075e05637e39458b00e859193aacde306aafd9a962f44f5114f81713539ec";
  };

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

  buildNativeInputs = [ 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 = [];
  };
}