nixpkgs/pkgs/tools/networking/surfraw/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

24 lines
603 B
Nix

{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;
};
}