Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / br / braa / package.nix
bloba3b416ae482e64826f3fe78dd8d146ac9d3d367f
2   lib,
3   stdenv,
4   fetchzip,
5   zlib,
6 }:
7 stdenv.mkDerivation rec {
8   pname = "braa";
9   version = "0.82";
11   src = fetchzip {
12     url = "http://s-tech.elsat.net.pl/${pname}/${pname}-${version}.tar.gz";
13     hash = "sha256-GS3kk432BdGx/sLzzjXvotD9Qn4S3U4XtMmM0fWMhGA=";
14   };
16   buildInputs = [zlib];
18   installPhase = ''
19     runHook preInstall
20     install -Dm755 braa $out/bin/braa
21     runHook postInstall
22   '';
24   meta = with lib; {
25     description = "Mass snmp scanner";
26     homepage = "http://s-tech.elsat.net.pl";
27     license = licenses.gpl2Only;
28     platforms = platforms.unix;
29     maintainers = with maintainers; [bycEEE];
30     mainProgram = "braa";
31   };