ipscan: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-31 13:10:26 +01:00 committed by GitHub
parent c2ad0e4b85
commit 8e041cf40c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};