nixpkgs/pkgs/applications/networking/linssid/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.3 KiB
Nix
Raw Normal View History

2022-03-22 20:53:46 +00:00
{ lib, stdenv, fetchurl, qtbase, qtsvg, qmake, pkg-config, boost, wirelesstools, iw, qwt6_1, wrapQtAppsHook }:
stdenv.mkDerivation rec {
pname = "linssid";
version = "2.7";
src = fetchurl {
url = "mirror://sourceforge/project/linssid/LinSSID_${version}/linssid_${version}.orig.tar.gz";
sha256 = "13d35rlcjncd8lx3khkgn9x8is2xjd5fp6ns5xsn3w6l4xj9b4gl";
};
nativeBuildInputs = [ pkg-config qmake wrapQtAppsHook ];
2022-03-22 20:53:46 +00:00
buildInputs = [ qtbase qtsvg boost qwt6_1 ];
2015-09-19 16:12:50 +00:00
patches = [ ./0001-unbundled-qwt.patch ];
postPatch = ''
2022-03-22 20:53:46 +00:00
sed -e "s|/usr/include/qt5.*$|& ${qwt6_1}/include|" -i linssid-app/linssid-app.pro
sed -e "s|/usr/include/|/nonexistent/|g" -i linssid-app/*.pro
sed -e 's|^LIBS .*= .*libboost_regex.a|LIBS += -lboost_regex|' \
-e "s|/usr|$out|g" \
-i linssid-app/linssid-app.pro linssid-app/linssid.desktop
sed -e "s|\.\./\.\./\.\./\.\./usr|$out|g" -i linssid-app/*.ui
2015-09-19 16:12:50 +00:00
# Remove bundled qwt
rm -fr qwt-lib
'';
qtWrapperArgs =
2021-01-15 13:21:58 +00:00
[ ''--prefix PATH : ${lib.makeBinPath [ wirelesstools iw ]}'' ];
meta = with lib; {
description = "Graphical wireless scanning for Linux";
homepage = "https://sourceforge.net/projects/linssid/";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}