Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
78 lines
1.5 KiB
Nix
78 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
wrapGAppsHook3,
|
|
buildGoModule,
|
|
glib,
|
|
pkg-config,
|
|
cairo,
|
|
gtk3,
|
|
xcur2png,
|
|
libX11,
|
|
zlib,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "nwg-look";
|
|
version = "1.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nwg-piotr";
|
|
repo = "nwg-look";
|
|
rev = "v${version}";
|
|
hash = "sha256-cNVUgtbdzEuttDO7DZyipDugACr/fIU8RKmh5trykPw=";
|
|
};
|
|
|
|
vendorHash = "sha256-8ooWJTOC4fmuu+/Dy7JOaGSO5YlsMfKcf2lyv2ojJIw=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
cairo
|
|
xcur2png
|
|
libX11.dev
|
|
zlib
|
|
gtk3
|
|
];
|
|
|
|
env.CGO_ENABLED = 1;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share
|
|
mkdir -p $out/share/nwg-look/langs
|
|
mkdir -p $out/share/applications
|
|
mkdir -p $out/share/pixmaps
|
|
mkdir -p $out/share/icons
|
|
cp stuff/main.glade $out/share/nwg-look/
|
|
cp langs/* $out/share/nwg-look/langs
|
|
cp stuff/nwg-look.desktop $out/share/applications
|
|
cp stuff/nwg-look.svg $out/share/pixmaps
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix PATH : "${glib.bin}/bin"
|
|
--prefix PATH : "${xcur2png}/bin"
|
|
--prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}"
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/nwg-piotr/nwg-look";
|
|
description = "GTK settings editor, designed to work properly in wlroots-based Wayland environment";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ max-amb ];
|
|
mainProgram = "nwg-look";
|
|
};
|
|
}
|