pkgs: add easyroam-connect-desktop

This commit is contained in:
insects 2024-10-21 14:26:59 +02:00
parent 9d1afd7888
commit c4dc44a810
3 changed files with 65 additions and 3 deletions

View file

@ -1,5 +1,5 @@
# enoko is my framework 13-inch AMD laptop, running nixos
{ ... }: {
{ pkgs, ... }: {
imports = [ ./global.nix ./global.linux.nix ./features/desktop ];
config.monitors = [{
@ -12,6 +12,8 @@
scale = "1.175000";
}];
config.home.packages = with pkgs; [ easyroam-connect-desktop ];
# Fix HiDPI scaling
# config.wayland.windowManager.hyprland = {
# settings.xwayland.force_zero_scaling = true;

View file

@ -1,6 +1,7 @@
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example'
pkgs:
{
pkgs: {
# example = pkgs.callPackage ./example { };
easyroam-connect-desktop =
pkgs.callPackage ./easyroam-connect-desktop.nix { };
}

View file

@ -0,0 +1,59 @@
{ stdenv, lib, fetchurl, autoPatchelfHook, glib, gtk3, pango, cairo, harfbuzz
, networkmanager, libsecret, libsoup_3, webkitgtk_4_1, glib-networking
, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "easyroam-connect-desktop";
version = "1.3.5";
src = fetchurl {
url =
"http://packages.easyroam.de/repos/easyroam-desktop/pool/main/e/easyroam-desktop/easyroam_connect_desktop-${version}+${version}-linux.deb";
hash = "sha256-TRzEPPjsD1+eSuElvbTV4HJFfwfS+EH+r/OhdMP8KG0=";
};
dontConfigure = true;
dontBuild = true;
nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook ];
buildInputs = [
glib
gtk3
pango
cairo
harfbuzz
libsecret
networkmanager
webkitgtk_4_1
libsoup_3
glib-networking
];
unpackPhase = ''
ar p $src data.tar.xz | tar xJ
'';
installPhase = ''
runHook preInstall
mkdir -p $out
cp -r usr/share $out/share
mkdir -p $out/bin
ln -s $out/share/easyroam_connect_desktop/easyroam_connect_desktop $out/bin/easyroam_connect_desktop
runHook postInstall
'';
meta = with lib; {
description = "Manage and install your easyroam WiFi profiles";
mainProgram = "easyroam_connect_desktop";
longDescription = ''
Using this software you can easily connect your device to eduroam® by simply logging in with your DFN-AAI account.
'';
homepage = "https://easyroam.de";
license = licenses.unfree;
# maintainers = with maintainers; [ shadows_withal ];
platforms = [ "x86_64-linux" ];
};
}