lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

evil-winrm: refactor

- update changelog entry

authored by

Fabian Affolter and committed by
GitHub
caa9d4ac 545ac55f

+17 -7
+17 -7
pkgs/tools/security/evil-winrm/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, makeWrapper, bundlerEnv }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , makeWrapper 5 + , bundlerEnv 6 + }: 2 7 3 8 stdenv.mkDerivation rec { 4 9 pname = "evil-winrm"; ··· 7 12 src = fetchFromGitHub { 8 13 owner = "Hackplayers"; 9 14 repo = "evil-winrm"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-8Lyo7BgypzrHMEcbYlxo/XWwOtBqs2tczYnc3+XEbeA="; 15 + rev = "refs/tags/v${version}"; 16 + hash = "sha256-8Lyo7BgypzrHMEcbYlxo/XWwOtBqs2tczYnc3+XEbeA="; 12 17 }; 13 18 14 19 env = bundlerEnv { ··· 18 23 gemset = ./gemset.nix; 19 24 }; 20 25 21 - nativeBuildInputs = [ makeWrapper ]; 22 - buildInputs = [ env.wrappedRuby ]; 26 + nativeBuildInputs = [ 27 + makeWrapper 28 + ]; 29 + 30 + buildInputs = [ 31 + env.wrappedRuby 32 + ]; 23 33 24 34 installPhase = '' 25 35 mkdir -p $out/bin ··· 27 37 ''; 28 38 29 39 meta = with lib; { 30 - homepage = "https://github.com/Hackplayers/evil-winrm"; 31 - changelog = "https://github.com/Hackplayers/evil-winrm/releases/tag/v${version}"; 32 40 description = "WinRM shell for hacking/pentesting"; 41 + homepage = "https://github.com/Hackplayers/evil-winrm"; 42 + changelog = "https://github.com/Hackplayers/evil-winrm/blob/v${version}/CHANGELOG.md"; 33 43 license = licenses.lgpl3Plus; 34 44 maintainers = with maintainers; [ elohmeier ]; 35 45 };