iwgtk: init at 0.4

This commit is contained in:
figsoda 2021-07-20 21:44:41 -04:00
parent 8d3b6e10f1
commit 2c3e94497d
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ fetchFromGitHub, gtk3, lib, pkg-config, stdenv }:
stdenv.mkDerivation rec {
pname = "iwgtk";
version = "0.4";
src = fetchFromGitHub {
owner = "j-lentz";
repo = pname;
rev = "v${version}";
sha256 = "129h7vq9b1r9a5c79hk8d06bj8lgzrnhq55x54hqri9c471jjh0s";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk3 ];
makeFlags = [ "prefix=$(out)" ];
meta = with lib; {
description = "Lightweight, graphical wifi management utility for Linux";
homepage = "https://github.com/j-lentz/iwgtk";
changelog = "https://github.com/j-lentz/iwgtk/blob/v${version}/CHANGELOG";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -6075,6 +6075,8 @@ in
itm-tools = callPackage ../development/tools/misc/itm-tools { };
iwgtk = callPackage ../tools/networking/iwgtk { };
ix = callPackage ../tools/misc/ix { };
jaaa = callPackage ../applications/audio/jaaa { };