summary refs log tree commit diff
path: root/pkgs/os-specific/linux/wpa_supplicant/gui-qt4.nix
blob: 7b587cdd62303ef3512b8f86a93e29ec9389ee1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl, qt4, imagemagick, inkscape}:

stdenv.mkDerivation rec {
  pkgname = "wpa_supplicant";
  version = "0.6.9";
  name = "${pkgname}-gui-qt4-${version}";

  src = fetchurl {
    url = "http://hostap.epitest.fi/releases/${pkgname}-${version}.tar.gz";
    sha256 = "0w7mf3nyilkjsn5v7p15v5fxnh0klgm8c979z80y0mkw7zx88lkf";
  };

  buildInputs = [qt4 imagemagick inkscape];
  builder = ./builder-gui-qt4.sh;  
}