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

25 lines
689 B
Nix
Raw Normal View History

2012-08-31 01:55:23 -07:00
{stdenv, fetchurl, perl}:
2019-08-13 14:52:01 -07:00
stdenv.mkDerivation {
name = "surfraw-2.3.0";
2012-08-31 01:55:23 -07:00
src = fetchurl {
url = "https://gitlab.com/surfraw/Surfraw/uploads/2de827b2786ef2fe43b6f07913ca7b7f/surfraw-2.3.0.tar.gz";
sha256 = "099nbif0x5cbcf18snc58nx1a3q7z0v9br9p2jiq9pcc7ic2015d";
2012-08-31 01:55:23 -07:00
};
configureFlags = [
"--disable-opensearch"
];
nativeBuildInputs = [ perl ];
2012-08-31 01:55:23 -07:00
meta = {
description = "Provides a fast unix command line interface to a variety of popular WWW search engines and other artifacts of power";
homepage = "https://gitlab.com/surfraw/Surfraw";
2012-08-31 01:55:23 -07:00
maintainers = [];
2013-12-20 08:07:44 -08:00
platforms = stdenv.lib.platforms.linux;
2018-08-04 07:55:09 -07:00
license = stdenv.lib.licenses.publicDomain;
2012-08-31 01:55:23 -07:00
};
}