mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 02:55:39 +00:00
iwgtk: init at 0.4
This commit is contained in:
parent
8d3b6e10f1
commit
2c3e94497d
28
pkgs/tools/networking/iwgtk/default.nix
Normal file
28
pkgs/tools/networking/iwgtk/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user