successful run

This commit is contained in:
2026-01-16 23:29:19 -05:00
parent 24e2973255
commit ad68d7f98d

View File

@@ -1,30 +1,22 @@
# This flake was initially generated by fh, the CLI for FlakeHub (version 0.1.22)
{ {
# A helpful description of your flake
description = "Music Presence flake"; description = "Music Presence flake";
# Flake inputs
inputs = { inputs = {
flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/*"; flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/*";
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*"; nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*";
}; };
# Flake outputs that other flakes can use
outputs = { self, flake-schemas, nixpkgs }: outputs = { self, flake-schemas, nixpkgs }:
let let
# Helpers for producing system-specific outputs
supportedSystems = [ "x86_64-linux" ]; supportedSystems = [ "x86_64-linux" ];
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f { forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
}); });
in { in {
# Schemas tell Nix about the structure of your flake's outputs
schemas = flake-schemas.schemas; schemas = flake-schemas.schemas;
# Development environments
devShells = forEachSupportedSystem ({ pkgs }: { devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell { default = pkgs.mkShell {
# Pinned packages available in the environment
packages = with pkgs; [ packages = with pkgs; [
curl curl
git git
@@ -42,20 +34,20 @@
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://github.com/ungive/discord-music-presence/releases/download/v${version}/${pname}-${version}-linux-x86_64.AppImage"; url = "https://github.com/ungive/discord-music-presence/releases/download/v${version}/${pname}-${version}-linux-x86_64.AppImage";
hash = ""; hash = "sha256-S8VHs81wbVv5Z1lncSIYJDUHRfUBl40WU+P3QTQROp0=";
}; };
appimageContents = pkgs.appimageTools.extract { inherit pname version src; }; appimageContents = pkgs.appimageTools.extract { inherit pname version src; };
in pkgs.appimageTools.wrapType2 { in pkgs.appimageTools.wrapType2 {
inherit pname version src; inherit pname version src;
nativeBuildInputs = with pkgs; [ makeWrapper ];
extraInstallCommands = '' extraInstallCommands = ''
install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications wrapProgram $out/bin/${pname} \
substituteInPlace $out/share/applications/${pname}.desktop \ --set QT_QPA_PLATFORM xcb \
--replace-fail 'Exec=AppRun' 'Exec=${pname}' --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
cp -r ${appimageContents}/usr/share/icons $out/share install -Dm444 ${appimageContents}/musicpresence.desktop -t $out/share/applications
''; '';
passthru.updateScript = pkgs.nix-update-script { }; passthru.updateScript = pkgs.nix-update-script { };