mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
34 lines
1.2 KiB
Nix
34 lines
1.2 KiB
Nix
{ appimageTools, lib, fetchurl, makeWrapper}:
|
|
|
|
appimageTools.wrapType2 rec {
|
|
pname = "cider";
|
|
version = "1.6.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ciderapp/Cider/releases/download/v${version}/Cider-${version}.AppImage";
|
|
sha256 = "sha256-NwoV1eeAN0u9VXWpu5mANXhmgqe8u3h7BlsREP1f/pI=";
|
|
};
|
|
|
|
extraInstallCommands =
|
|
let contents = appimageTools.extract { inherit pname version src; };
|
|
in ''
|
|
source "${makeWrapper}/nix-support/setup-hook"
|
|
wrapProgram $out/bin/${pname} \
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
|
|
|
|
install -m 444 -D ${contents}/${pname}.desktop -t $out/share/applications
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
--replace-warn 'Exec=AppRun' 'Exec=${pname}'
|
|
cp -r ${contents}/usr/share/icons $out/share
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "New look into listening and enjoying Apple Music in style and performance";
|
|
homepage = "https://github.com/ciderapp/Cider";
|
|
license = licenses.agpl3Only;
|
|
mainProgram = "cider";
|
|
maintainers = [ maintainers.cigrainger ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|