lol
1{stdenv, fetchurl, perl}:
2
3stdenv.mkDerivation rec {
4 name = "surfraw-2.3.0";
5
6 src = fetchurl {
7 url = "http://surfraw.alioth.debian.org/dist/surfraw-2.3.0.tar.gz";
8 sha256 = "099nbif0x5cbcf18snc58nx1a3q7z0v9br9p2jiq9pcc7ic2015d";
9 };
10
11 configureFlags = [
12 "--disable-opensearch"
13 ];
14
15 nativeBuildInputs = [ perl ];
16
17 meta = {
18 description = "Provides a fast unix command line interface to a variety of popular WWW search engines and other artifacts of power";
19 homepage = http://surfraw.alioth.debian.org;
20 maintainers = [];
21 platforms = stdenv.lib.platforms.linux;
22 };
23}