From 8e041cf40c40da7a9b5f50426ae67c7c84480e6f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 31 Dec 2022 13:10:26 +0100 Subject: [PATCH] ipscan: add changelog to meta --- pkgs/tools/security/ipscan/default.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/ipscan/default.nix b/pkgs/tools/security/ipscan/default.nix index 01c6e6a4476..7611680c64a 100644 --- a/pkgs/tools/security/ipscan/default.nix +++ b/pkgs/tools/security/ipscan/default.nix @@ -1,4 +1,13 @@ -{ lib, stdenv, fetchurl, jdk, jre, swt, makeWrapper, xorg, dpkg }: +{ lib +, stdenv +, fetchurl +, jdk +, jre +, swt +, makeWrapper +, xorg +, dpkg +}: stdenv.mkDerivation rec { pname = "ipscan"; @@ -13,6 +22,7 @@ stdenv.mkDerivation rec { unpackCmd = "${dpkg}/bin/dpkg-deb -x $src ."; nativeBuildInputs = [ makeWrapper ]; + buildInputs = [ jdk ]; installPhase = '' @@ -34,8 +44,9 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Fast and friendly network scanner"; homepage = "https://angryip.org"; + changelog = "https://github.com/angryip/ipscan/blob/${version}/CHANGELOG"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl2; + license = licenses.gpl2Only; platforms = [ "x86_64-linux" ]; maintainers = with maintainers; [ kylesferrazza ]; };