summary refs log tree commit diff
path: root/pkgs/tools/networking/surfraw/default.nix
blob: bd3a1135a845d237fbfa3bd441c197786aa880dc (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"
  ];

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