mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
Merge pull request #148463 from WolfangAukang/mobilecoin-desktop
This commit is contained in:
commit
10e9795370
39
pkgs/applications/misc/mobilecoin-wallet/default.nix
Normal file
39
pkgs/applications/misc/mobilecoin-wallet/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ lib, fetchurl, appimageTools }:
|
||||
|
||||
let
|
||||
pname = "mobilecoin-wallet";
|
||||
version = "1.4.1";
|
||||
name = "${pname}-${version}";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mobilecoinofficial/desktop-wallet/releases/download/v${version}/MobileCoin-Wallet-${version}.AppImage";
|
||||
sha256 = "sha256-x5frHgkEz77pqSB6YANRtZmCzaK/RxRzMElLu49lxPk=";
|
||||
};
|
||||
appimageContents = appimageTools.extractType2 { inherit name src; };
|
||||
|
||||
in appimageTools.wrapType2 {
|
||||
inherit name src;
|
||||
|
||||
extraPkgs = pkgs: (appimageTools.defaultFhsEnvArgs.multiPkgs pkgs) ++ [ pkgs.libsecret ];
|
||||
|
||||
extraInstallCommands = ''
|
||||
mv $out/bin/${name} $out/bin/${pname}
|
||||
|
||||
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 = "A 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 = with maintainers; [ wolfangaukang ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -1843,6 +1843,8 @@ with pkgs;
|
||||
|
||||
mdr = callPackage ../tools/misc/mdr { };
|
||||
|
||||
mobilecoin-wallet = callPackage ../applications/misc/mobilecoin-wallet { };
|
||||
|
||||
mpdevil = callPackage ../applications/audio/mpdevil { };
|
||||
|
||||
pacparser = callPackage ../tools/networking/pacparser { };
|
||||
|
Loading…
Reference in New Issue
Block a user