nixpkgs/pkgs/tools/networking/surfraw/default.nix
Ryan Mulligan cead247e4c surfraw: 2.2.9 -> 2.3.0
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/3w61z4y841pb4zykywl9p7ajb6lhqjf8-surfraw-2.3.0/bin/surfraw-update-path -h` got 0 exit code
- ran `/nix/store/3w61z4y841pb4zykywl9p7ajb6lhqjf8-surfraw-2.3.0/bin/surfraw-update-path --help` got 0 exit code
- ran `/nix/store/3w61z4y841pb4zykywl9p7ajb6lhqjf8-surfraw-2.3.0/bin/surfraw-update-path -h` and found version 2.3.0
- ran `/nix/store/3w61z4y841pb4zykywl9p7ajb6lhqjf8-surfraw-2.3.0/bin/surfraw-update-path --help` and found version 2.3.0
- found 2.3.0 with grep in /nix/store/3w61z4y841pb4zykywl9p7ajb6lhqjf8-surfraw-2.3.0
- found 2.3.0 in filename of file in /nix/store/3w61z4y841pb4zykywl9p7ajb6lhqjf8-surfraw-2.3.0

cc ""
2018-02-28 20:35:12 +00:00

24 lines
603 B
Nix

{stdenv, fetchurl, perl}:
stdenv.mkDerivation rec {
name = "surfraw-2.3.0";
src = fetchurl {
url = "http://surfraw.alioth.debian.org/dist/surfraw-2.3.0.tar.gz";
sha256 = "099nbif0x5cbcf18snc58nx1a3q7z0v9br9p2jiq9pcc7ic2015d";
};
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;
};
}