mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ stdenv, fetchurl, qtbase, qtsvg, qmake, pkgconfig, boost, wirelesstools, iw, qwt, 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 = [ pkgconfig qmake wrapQtAppsHook ];
|
|
buildInputs = [ qtbase qtsvg boost qwt ];
|
|
|
|
patches = [ ./0001-unbundled-qwt.patch ];
|
|
|
|
postPatch = ''
|
|
sed -e "s|/usr/include/qt5.*$|& ${qwt}/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
|
|
|
|
# Remove bundled qwt
|
|
rm -fr qwt-lib
|
|
'';
|
|
|
|
qtWrapperArgs =
|
|
[ ''--prefix PATH : ${stdenv.lib.makeBinPath [ wirelesstools iw ]}'' ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Graphical wireless scanning for Linux";
|
|
homepage = "https://sourceforge.net/projects/linssid/";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|