mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, scdoc
|
|
, wrapGAppsHook4
|
|
, gtk4
|
|
, qrencode
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "iwgtk";
|
|
version = "0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "j-lentz";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/Nxti4PfYVLnIiBgtAuR3KGI8dULszuSdTp+2DzBfbs=";
|
|
};
|
|
|
|
# patch systemd service to pass necessary environments and use absolute paths
|
|
patches = [ ./systemd-service.patch ];
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config scdoc wrapGAppsHook4 ];
|
|
|
|
buildInputs = [ gtk4 qrencode ];
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/lib/systemd/user/iwgtk.service --subst-var 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;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "iwgtk";
|
|
};
|
|
}
|