mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
47 lines
1.6 KiB
Nix
47 lines
1.6 KiB
Nix
{ lib, fetchurl, appimageTools}:
|
|
|
|
appimageTools.wrapAppImage rec {
|
|
pname = "lbry-desktop";
|
|
version = "0.53.9";
|
|
|
|
# Fetch from GitHub Releases and extract
|
|
src = appimageTools.extract {
|
|
inherit pname version;
|
|
src = fetchurl {
|
|
url = "https://github.com/lbryio/lbry-desktop/releases/download/v${version}/LBRY_${version}.AppImage";
|
|
# Gotten from latest-linux.yml
|
|
hash = "sha256-FkqIazE4eIEobYRBstXfPWh6MTCaNcCLk14yDGC4rRk=";
|
|
};
|
|
};
|
|
|
|
# At runtime, Lbry likes to have access to Ffmpeg
|
|
extraPkgs = pkgs: [ pkgs.ffmpeg ];
|
|
|
|
# General fixup
|
|
extraInstallCommands = ''
|
|
# Firstly, rename the executable to lbry for convinence
|
|
mv $out/bin/${pname} $out/bin/lbry
|
|
|
|
# Now, install assets such as the desktop file and icons
|
|
install -m 444 -D ${src}/lbry.desktop -t $out/share/applications
|
|
substituteInPlace $out/share/applications/lbry.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=lbry'
|
|
cp -r ${src}/usr/share/icons $out/share
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Browser and wallet for LBRY, the decentralized, user-controlled content marketplace";
|
|
longDescription = ''
|
|
The LBRY app is a graphical browser for the decentralized content marketplace provided by the LBRY protocol.
|
|
It is essentially the lbry daemon bundled with a UI using Electron.
|
|
'';
|
|
license = licenses.mit;
|
|
homepage = "https://lbry.com/";
|
|
downloadPage = "https://lbry.com/get/";
|
|
changelog = "https://github.com/lbryio/lbry-desktop/blob/master/CHANGELOG.md";
|
|
maintainers = with maintainers; [ enderger ];
|
|
platforms = [ "x86_64-linux" ];
|
|
mainProgram = "lbry";
|
|
};
|
|
}
|