mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
9367367dfd
Permanent redirects on homepages and/or source URLs as reported by Repology
33 lines
767 B
Nix
33 lines
767 B
Nix
{ stdenv, mkDerivation, qtbase, qmake, inkscape, imagemagick, wpa_supplicant }:
|
|
|
|
mkDerivation {
|
|
name = "wpa_gui-${wpa_supplicant.version}";
|
|
|
|
inherit (wpa_supplicant) src;
|
|
|
|
buildInputs = [ qtbase ];
|
|
nativeBuildInputs = [ qmake inkscape imagemagick ];
|
|
|
|
prePatch = ''
|
|
cd wpa_supplicant/wpa_gui-qt4
|
|
'';
|
|
|
|
postBuild = ''
|
|
make -C icons
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -pv $out/{bin,share/applications,share/icons}
|
|
cp -v wpa_gui $out/bin
|
|
cp -v wpa_gui.desktop $out/share/applications
|
|
cp -av icons/hicolor $out/share/icons
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Qt-based GUI for wpa_supplicant";
|
|
homepage = https://hostap.epitest.fi/wpa_supplicant/;
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|