ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
55 lines
1.7 KiB
Nix
55 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, jdk
|
|
, jre
|
|
, swt
|
|
, makeWrapper
|
|
, xorg
|
|
, dpkg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ipscan";
|
|
version = "3.9.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/angryip/ipscan/releases/download/${version}/ipscan_${version}_amd64.deb";
|
|
hash = "sha256-UPkUwZV3NIeVfL3yYvqOhm4X5xW+40GOlZGy8WGhYmk=";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
unpackCmd = "${dpkg}/bin/dpkg-deb -x $src .";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ jdk ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share
|
|
cp usr/lib/ipscan/ipscan-linux64-${version}.jar $out/share/${pname}-${version}.jar
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/ipscan \
|
|
--prefix LD_LIBRARY_PATH : "$out/lib/:${lib.makeLibraryPath [ swt xorg.libXtst ]}" \
|
|
--add-flags "-Xmx256m -cp $out/share/${pname}-${version}.jar:${swt}/jars/swt.jar net.azib.ipscan.Main"
|
|
|
|
mkdir -p $out/share/applications
|
|
cp usr/share/applications/ipscan.desktop $out/share/applications/ipscan.desktop
|
|
substituteInPlace $out/share/applications/ipscan.desktop --replace "/usr/bin" "$out/bin"
|
|
|
|
mkdir -p $out/share/pixmaps
|
|
cp usr/share/pixmaps/ipscan.png $out/share/pixmaps/ipscan.png
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Angry IP Scanner - fast and friendly network scanner";
|
|
mainProgram = "ipscan";
|
|
homepage = "https://angryip.org";
|
|
downloadPage = "https://github.com/angryip/ipscan/releases/tag/${version}";
|
|
changelog = "https://github.com/angryip/ipscan/blob/${version}/CHANGELOG";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.gpl2Only;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ kylesferrazza totoroot ];
|
|
};
|
|
}
|