mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
43 lines
1.7 KiB
Nix
43 lines
1.7 KiB
Nix
{ lib, fetchurl, appimageTools, makeWrapper, imagemagick }:
|
|
|
|
let
|
|
pname = "ledger-live-desktop";
|
|
version = "2.84.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.live.ledger.com/${pname}-${version}-linux-x86_64.AppImage";
|
|
hash = "sha256-VqPiFcquR1AbtH3oZJ5l+/KmvFUGCdBrwZuPAJ+26nw=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
inherit pname version src;
|
|
};
|
|
in
|
|
appimageTools.wrapType2 rec {
|
|
inherit pname version src;
|
|
|
|
extraInstallCommands = ''
|
|
install -m 444 -D ${appimageContents}/ledger-live-desktop.desktop $out/share/applications/ledger-live-desktop.desktop
|
|
install -m 444 -D ${appimageContents}/ledger-live-desktop.png $out/share/icons/hicolor/1024x1024/apps/ledger-live-desktop.png
|
|
${imagemagick}/bin/convert ${appimageContents}/ledger-live-desktop.png -resize 512x512 ledger-live-desktop_512.png
|
|
install -m 444 -D ledger-live-desktop_512.png $out/share/icons/hicolor/512x512/apps/ledger-live-desktop.png
|
|
|
|
source "${makeWrapper}/nix-support/setup-hook"
|
|
wrapProgram "$out/bin/${pname}" \
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland --enable-features=WaylandWindowDecorations --enable-wayland-ime}}"
|
|
|
|
substituteInPlace $out/share/applications/ledger-live-desktop.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "App for Ledger hardware wallets";
|
|
homepage = "https://www.ledger.com/ledger-live/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ andresilva thedavidmeister nyanloutre RaghavSood th0rgal ];
|
|
platforms = [ "x86_64-linux" ];
|
|
mainProgram = "ledger-live-desktop";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
}
|