summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-31 13:10:26 +0100
committerGitHub <noreply@github.com>2022-12-31 13:10:26 +0100
commit8e041cf40c40da7a9b5f50426ae67c7c84480e6f (patch)
treec0b187e4b108a768fc821ea24e5db17dd498bded
parentc2ad0e4b8550713f7f5c493101040ed0ca016fe7 (diff)
downloadnixpkgs-8e041cf40c40da7a9b5f50426ae67c7c84480e6f.tar
nixpkgs-8e041cf40c40da7a9b5f50426ae67c7c84480e6f.tar.gz
nixpkgs-8e041cf40c40da7a9b5f50426ae67c7c84480e6f.tar.bz2
nixpkgs-8e041cf40c40da7a9b5f50426ae67c7c84480e6f.tar.lz
nixpkgs-8e041cf40c40da7a9b5f50426ae67c7c84480e6f.tar.xz
nixpkgs-8e041cf40c40da7a9b5f50426ae67c7c84480e6f.tar.zst
nixpkgs-8e041cf40c40da7a9b5f50426ae67c7c84480e6f.zip
ipscan: add changelog to meta
-rw-r--r--pkgs/tools/security/ipscan/default.nix15
1 files 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 ];
   };