monorepo/fitnesstrax/app/override.nix

8 lines
280 B
Nix
Raw Normal View History

2024-02-10 17:28:12 +00:00
{ gtkNativeInputs }:
attrs: {
nativeBuildInputs = gtkNativeInputs;
postInstall = ''
install -Dt $out/share/applications resources/fitnesstrax.desktop
install -Dt $out/share/glib-2.0/schemas resources/com.luminescent-dreams.fitnesstrax.gschema.xml
'';
}