nixpkgs/pkgs/tools/networking/surfraw/default.nix

24 lines
605 B
Nix
Raw Normal View History

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