Skip to content

Commit

Permalink
electron-cash: remove with lib; from meta
Browse files Browse the repository at this point in the history
  • Loading branch information
itepastra committed Nov 6, 2024
1 parent 2e9a045 commit 228fef9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/applications/misc/electron-cash/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ python3Packages.buildPythonApplication rec {
$out/bin/electron-cash help >/dev/null
'';

meta = with lib; {
meta = {
description = "Bitcoin Cash SPV Wallet";
mainProgram = "electron-cash";
longDescription = ''
Expand All @@ -100,12 +100,12 @@ python3Packages.buildPythonApplication rec {
of the blockchain.
'';
homepage = "https://www.electroncash.org/";
platforms = platforms.unix;
maintainers = with maintainers; [
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [
lassulus
nyanloutre
oxalica
];
license = licenses.mit;
license = lib.licenses.mit;
};
}

0 comments on commit 228fef9

Please sign in to comment.