mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
42d21c6147
Linux enumeration tool with verbosity levels https://github.com/diego-treitos/linux-smart-enumeration
41 lines
966 B
Nix
41 lines
966 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
bash,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lse";
|
|
version = "4.14nw";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "diego-treitos";
|
|
repo = "linux-smart-enumeration";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-qGLmrbyeyhHG6ONs7TJLTm68xpvxB1iAnMUApfTSqEk=";
|
|
};
|
|
|
|
buildInputs = [ bash ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp lse.sh $out/bin/lse.sh
|
|
wrapProgram $out/bin/lse.sh \
|
|
--prefix PATH : ${lib.makeBinPath [ bash ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Linux enumeration tool with verbosity levels";
|
|
homepage = "https://github.com/diego-treitos/linux-smart-enumeration";
|
|
changelog = "https://github.com/diego-treitos/linux-smart-enumeration/releases/tag/${version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "lse.sh";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|