mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +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.
38 lines
1.3 KiB
Nix
38 lines
1.3 KiB
Nix
{ lib, fetchurl, appimageTools }:
|
|
|
|
let
|
|
pname = "mobilecoin-wallet";
|
|
version = "1.9.1";
|
|
src = fetchurl {
|
|
url = "https://github.com/mobilecoinofficial/desktop-wallet/releases/download/v${version}/MobileCoin.Wallet-${version}.AppImage";
|
|
hash = "sha256-UCBQRcGFHMQlLGvChrrMmM0MYv7AZtlkngFK4ptIPU0=";
|
|
};
|
|
appimageContents = appimageTools.extractType2 { inherit pname version src; };
|
|
|
|
in appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
|
|
extraPkgs = pkgs: [ pkgs.libsecret ];
|
|
|
|
extraInstallCommands = ''
|
|
mkdir -p $out/share/${pname}
|
|
cp -a ${appimageContents}/locales $out/share/${pname}
|
|
cp -a ${appimageContents}/resources $out/share/${pname}
|
|
cp -a ${appimageContents}/usr/share/icons $out/share/
|
|
|
|
install -Dm 644 ${appimageContents}/${pname}.desktop -t $out/share/applications/
|
|
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
--replace "AppRun" "${pname}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "User-friendly desktop wallet with support for transaction history, encrypted contact book, gift codes, and payments";
|
|
homepage = "https://github.com/mobilecoinofficial/desktop-wallet";
|
|
license = licenses.gpl3Only;
|
|
maintainers = [ ];
|
|
mainProgram = "mobilecoin-wallet";
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|