pkgs: add meta attr

Also add more detailed `enable` option descriptions.
This commit is contained in:
Erik Arvstedt
2021-12-14 19:51:23 +01:00
parent 602281b132
commit 5ab85cb2a5
17 changed files with 70 additions and 20 deletions

View File

@@ -1,8 +1,16 @@
{ pkgs }:
{ pkgs, lib }:
let
nodePackages = import ./composition.nix { inherit pkgs; };
in
nodePackages.package.override {
# Required because spark-wallet uses `npm-shrinkwrap.json` as the lock file
reconstructLock = true;
meta = with lib; {
description = "A minimalistic wallet GUI for c-lightning";
homepage = "https://github.com/shesek/spark-wallet";
license = licenses.mit;
maintainers = with maintainers; [ nixbitcoin earvstedt ];
platforms = platforms.unix;
};
}