mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 12:53:54 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, bundlerEnv, ruby }:
|
|
|
|
let
|
|
gems = bundlerEnv {
|
|
name = "whatweb-env";
|
|
inherit ruby;
|
|
gemdir = ./.;
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "whatweb";
|
|
version = "0.5.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "urbanadventurer";
|
|
repo = "whatweb";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-HLF55x4C8n8aPO4SI0d6Z9wZe80krtUaGUFmMaYRBIE=";
|
|
};
|
|
|
|
prePatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace "/usr/local" "$out" \
|
|
--replace "/usr" "$out"
|
|
'';
|
|
|
|
buildInputs = [ gems ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
raw=$out/share/whatweb/whatweb
|
|
rm $out/bin/whatweb
|
|
cat << EOF >> $out/bin/whatweb
|
|
#!/bin/sh -e
|
|
exec ${gems}/bin/bundle exec ${ruby}/bin/ruby "$raw" "\$@"
|
|
EOF
|
|
chmod +x $out/bin/whatweb
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Next generation web scanner";
|
|
mainProgram = "whatweb";
|
|
homepage = "https://github.com/urbanadventurer/whatweb";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ wolfangaukang ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|