mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
moved functions to /lib inputs over imports turned each module file into a nixosModule moved registry and $NIX_PATH pinning to /modules/pinning.nix
53 lines
1 KiB
Nix
53 lines
1 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
wrapGAppsHook,
|
|
libX11,
|
|
libXScrnSaver,
|
|
pkg-config,
|
|
cairo,
|
|
glib,
|
|
gdk-pixbuf,
|
|
gtkmm3,
|
|
pango,
|
|
libappindicator-gtk3,
|
|
atk,
|
|
fetchFromGitHub,
|
|
}: let
|
|
buildInputs = [
|
|
libX11
|
|
libXScrnSaver
|
|
cairo
|
|
glib
|
|
gdk-pixbuf
|
|
gtkmm3
|
|
pango
|
|
libappindicator-gtk3
|
|
atk
|
|
];
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
name = "afk-cmds";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Gerg-L";
|
|
repo = "afk-cmds";
|
|
rev = "b345d5a038a86c6ca31d3bd8800ac759da912a22";
|
|
sha256 = "sha256-yleq8bg3ZnilbYTNXRteBALiJ/fIXOxXxqf966OokqQ=";
|
|
};
|
|
|
|
inherit buildInputs;
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGAppsHook
|
|
];
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/afk-cmds \
|
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath buildInputs}
|
|
mkdir -p $out/share/icons/hicolor/256x256/apps/
|
|
cp $src/afk-icon.png $out/share/icons/hicolor/256x256/apps/afk-icon.png
|
|
'';
|
|
cargoSha256 = "sha256-r20g5Tkj2ft1ho/fghg+qwiGOUay8HCIrBbg+y8kQXQ=";
|
|
}
|