nixpkgs/pkgs/tools/networking/surfraw/default.nix
c0bw3b d811bb1dcb Treewide: replace last refs to alioth.debian.org
Alioth is now offline -> https://wiki.debian.org/Salsa/AliothMigration
Sources moved to other forges (Salsa for example)
Some release tarballs are available on alioth-archive.debian.org
2019-11-16 11:32:05 +01:00

25 lines
687 B
Nix

{stdenv, fetchurl, perl}:
stdenv.mkDerivation {
name = "surfraw-2.3.0";
src = fetchurl {
url = "https://gitlab.com/surfraw/Surfraw/uploads/2de827b2786ef2fe43b6f07913ca7b7f/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 = https://gitlab.com/surfraw/Surfraw;
maintainers = [];
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.publicDomain;
};
}