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

25 lines
680 B
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{lib, stdenv, fetchurl, perl}:
2012-08-31 10:55:23 +02:00
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
name = "surfraw-2.3.0";
2012-08-31 10:55:23 +02:00
src = fetchurl {
url = "https://gitlab.com/surfraw/Surfraw/uploads/2de827b2786ef2fe43b6f07913ca7b7f/surfraw-2.3.0.tar.gz";
sha256 = "099nbif0x5cbcf18snc58nx1a3q7z0v9br9p2jiq9pcc7ic2015d";
2012-08-31 10:55:23 +02:00
};
configureFlags = [
"--disable-opensearch"
];
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 = "https://gitlab.com/surfraw/Surfraw";
2012-08-31 10:55:23 +02:00
maintainers = [];
2021-01-15 10:19:50 +01:00
platforms = lib.platforms.linux;
license = lib.licenses.publicDomain;
2012-08-31 10:55:23 +02:00
};
}