2012-08-31 10:55:23 +02:00
|
|
|
{stdenv, fetchurl, perl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-20 17:06:38 +01:00
|
|
|
name = "surfraw-2.2.9";
|
2012-08-31 10:55:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-12-20 17:06:38 +01:00
|
|
|
url = "http://surfraw.alioth.debian.org/dist/surfraw-2.2.9.tar.gz";
|
|
|
|
sha256 = "1fy4ph5h9kp0jzj1m6pfylxnnmgdk0mmdppw76z9jhna4jndk5xa";
|
2012-08-31 10:55:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--disable-opensearch"
|
|
|
|
];
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ perl ];
|
2012-08-31 10:55:23 +02:00
|
|
|
|
|
|
|
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 = [];
|
2013-12-20 17:07:44 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-08-31 10:55:23 +02:00
|
|
|
};
|
|
|
|
}
|