Compare commits
4 Commits
15b0eb860e
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 623b7997e7 | |||
| f9fd5d357d | |||
| ad68d7f98d | |||
| 24e2973255 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/result
|
||||||
11
README.md
Normal file
11
README.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# Music Presence (Nix edition)
|
||||||
|
|
||||||
|
Took the appimage and wrapped it into a Nix package.
|
||||||
|
|
||||||
|
To build the Nix package, run the following:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
nix build
|
||||||
|
```
|
||||||
|
|
||||||
|
This will only build on x86-64 Linux.
|
||||||
119
flake.nix
119
flake.nix
@@ -1,73 +1,84 @@
|
|||||||
# 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 =
|
||||||
outputs = { self, flake-schemas, nixpkgs }:
|
{
|
||||||
|
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 =
|
||||||
pkgs = import nixpkgs { inherit system; };
|
f:
|
||||||
});
|
nixpkgs.lib.genAttrs supportedSystems (
|
||||||
in {
|
system:
|
||||||
# Schemas tell Nix about the structure of your flake's outputs
|
f {
|
||||||
|
pkgs = import nixpkgs { inherit system; };
|
||||||
|
}
|
||||||
|
);
|
||||||
|
in
|
||||||
|
{
|
||||||
schemas = flake-schemas.schemas;
|
schemas = flake-schemas.schemas;
|
||||||
|
|
||||||
# Development environments
|
devShells = forEachSupportedSystem (
|
||||||
devShells = forEachSupportedSystem ({ pkgs }: {
|
{ pkgs }:
|
||||||
default = pkgs.mkShell {
|
{
|
||||||
# Pinned packages available in the environment
|
default = pkgs.mkShell {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
curl
|
curl
|
||||||
git
|
git
|
||||||
jq
|
jq
|
||||||
wget
|
wget
|
||||||
nixpkgs-fmt
|
nixpkgs-fmt
|
||||||
];
|
];
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
packages = forEachSupportedSystem ({ pkgs }: {
|
|
||||||
default = let
|
|
||||||
pname = "musicpresence";
|
|
||||||
version = "2.3.4";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "https://github.com/ungive/discord-music-presence/releases/download/v${version}/${pname}-${version}-linux-x86_64.AppImage";
|
|
||||||
hash = "";
|
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
appimageContents = pkgs.appimageTools.extract { inherit pname version src; };
|
packages = forEachSupportedSystem (
|
||||||
|
{ pkgs }:
|
||||||
|
{
|
||||||
|
default =
|
||||||
|
let
|
||||||
|
pname = "musicpresence";
|
||||||
|
version = "2.3.5";
|
||||||
|
|
||||||
in pkgs.appimageTools.wrapType2 {
|
src = pkgs.fetchurl {
|
||||||
inherit pname version src;
|
url = "https://github.com/ungive/discord-music-presence/releases/download/v${version}/${pname}-${version}-linux-x86_64.AppImage";
|
||||||
|
hash = "sha256-M7oDxVevspA3SGuHktS8ChQAYopgIqypiVlzyE4uyqI=";
|
||||||
extraInstallCommands = ''
|
};
|
||||||
install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications
|
|
||||||
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
||||||
--replace-fail 'Exec=AppRun' 'Exec=${pname}'
|
|
||||||
cp -r ${appimageContents}/usr/share/icons $out/share
|
|
||||||
'';
|
|
||||||
|
|
||||||
passthru.updateScript = pkgs.nix-update-script { };
|
appimageContents = pkgs.appimageTools.extract { inherit pname version src; };
|
||||||
|
in
|
||||||
|
pkgs.appimageTools.wrapType2 {
|
||||||
|
inherit pname version src;
|
||||||
|
|
||||||
meta = {
|
nativeBuildInputs = with pkgs; [ makeWrapper ];
|
||||||
description = "The Discord music status that works with any media player";
|
extraInstallCommands = ''
|
||||||
mainProgram = "musicpresence";
|
wrapProgram $out/bin/${pname} \
|
||||||
homepage = "https://github.com/ungive/discord-music-presence";
|
--set QT_QPA_PLATFORM xcb \
|
||||||
maintainers = [ "wymillerlinux" ];
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
|
||||||
platforms = [ "x86_64-linux" ];
|
install -Dm444 ${appimageContents}/musicpresence.desktop -t $out/share/applications
|
||||||
changelog = "https://github.com/ungive/discord-music-presence/releases/tag/v${version}";
|
'';
|
||||||
};
|
|
||||||
};
|
passthru.updateScript = pkgs.nix-update-script { };
|
||||||
});
|
|
||||||
|
meta = {
|
||||||
|
description = "The Discord music status that works with any media player";
|
||||||
|
mainProgram = "musicpresence";
|
||||||
|
homepage = "https://github.com/ungive/discord-music-presence";
|
||||||
|
maintainers = [ "wymillerlinux" ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
changelog = "https://github.com/ungive/discord-music-presence/releases/tag/v${version}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user