Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e0ff535c4c7c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bd1de18f6ce3
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 27, 2020

  1. ncrack: init at 0.7

    siraben committed Oct 27, 2020
    Copy the full SHA
    74c6afa View commit details

Commits on Nov 27, 2020

  1. Merge pull request #101765 from siraben/ncrack-init

    ncrack: init at 0.7
    SuperSandro2000 authored Nov 27, 2020
    Copy the full SHA
    bd1de18 View commit details
Showing with 25 additions and 0 deletions.
  1. +23 −0 pkgs/tools/security/ncrack/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
23 changes: 23 additions & 0 deletions pkgs/tools/security/ncrack/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, openssl, zlib }:

stdenv.mkDerivation rec {
pname = "ncrack";
version = "0.7";

src = fetchFromGitHub {
owner = "nmap";
repo = "ncrack";
rev = version;
sha256 = "1gnv5xdd7n04glcpy7q1mkb6f8gdhdrhlrh8z6k4g2pjdhxlz26g";
};

buildInputs = [ openssl zlib ];

meta = with stdenv.lib; {
description = "Network authentication tool";
homepage = "https://nmap.org/ncrack/";
license = licenses.gpl2Only;
maintainers = with maintainers; [ siraben ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -5252,6 +5252,8 @@ in

nbench = callPackage ../tools/misc/nbench { };

ncrack = callPackage ../tools/security/ncrack { };

netdata = callPackage ../tools/system/netdata {
inherit (darwin.apple_sdk.frameworks) CoreFoundation IOKit;
};