biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / snmpcheck / default.nix
blobdbf6c95de8ac1f803c3fb04c35d2eeb1a6137f69
1 { stdenv, lib, fetchurl, ruby }:
3 let
4   rubyEnv = ruby.withPackages (ps: [ ps.snmp ]);
5 in
6 stdenv.mkDerivation rec {
7   pname = "snmpcheck";
8   version = "1.9";
9   src = fetchurl {
10     url = "http://www.nothink.org/codes/snmpcheck/snmpcheck-${version}.rb";
11     sha256 = "sha256-9xkLqbgxU1uykx+M9QsbPAH8OI/Cqn9uw6ALe23Lbq0=";
12     executable = true;
13   };
15   dontUnpack = true;
17   buildInputs = [ rubyEnv.wrappedRuby ];
19   installPhase = ''
20     mkdir -p $out/bin
21     cp $src $out/bin/snmp-check
22   '';
24   meta = with lib; {
25     description = "SNMP enumerator";
26     homepage = "http://www.nothink.org/codes/snmpcheck/";
27     license = licenses.gpl3Plus;
28     mainProgram = "snmp-check";
29   };