2021-01-15 09:19:50 +00:00
|
|
|
{lib, stdenv, fetchurl, perl}:
|
2012-08-31 09:55:23 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2018-02-28 01:03:27 +00:00
|
|
|
name = "surfraw-2.3.0";
|
2012-08-31 09:55:23 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-16 10:32:05 +00:00
|
|
|
url = "https://gitlab.com/surfraw/Surfraw/uploads/2de827b2786ef2fe43b6f07913ca7b7f/surfraw-2.3.0.tar.gz";
|
2018-02-28 01:03:27 +00:00
|
|
|
sha256 = "099nbif0x5cbcf18snc58nx1a3q7z0v9br9p2jiq9pcc7ic2015d";
|
2012-08-31 09:55:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--disable-opensearch"
|
|
|
|
];
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ perl ];
|
2012-08-31 09:55:23 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Provides a fast unix command line interface to a variety of popular WWW search engines and other artifacts of power";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gitlab.com/surfraw/Surfraw";
|
2012-08-31 09:55:23 +01:00
|
|
|
maintainers = [];
|
2021-03-19 06:20:38 +00:00
|
|
|
platforms = lib.platforms.all;
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.publicDomain;
|
2012-08-31 09:55:23 +01:00
|
|
|
};
|
|
|
|
}
|