about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorBruno BELANYI <bruno@belanyi.fr>2023-08-04 22:20:48 +0100
committerBruno BELANYI <bruno@belanyi.fr>2023-08-04 22:20:48 +0100
commit25bbc404a1c3ef99435ced65f949d4731621ad26 (patch)
tree16c5af07925f3d0a81850ed64a771e0f6dea8666 /pkgs/applications/networking/p2p
parent132ae240382379d855b7d20fd1b172e68b50376d (diff)
flood: fix mainProgram merge issue
The package was repackaged using `buildNpmPackage` ([1]). In parallel
its `meta.mainProgram` was defined for the old `node-packages.nix`
packaging format ([2]).

Both branches were merged almost at the same time, breaking the build.

[1]: https://github.com/NixOS/nixpkgs/pull/245435
[2]: https://github.com/NixOS/nixpkgs/pull/247095
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/flood/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/networking/p2p/flood/default.nix b/pkgs/applications/networking/p2p/flood/default.nix
index 3f577289502aa..8ee94f17e50cd 100644
--- a/pkgs/applications/networking/p2p/flood/default.nix
+++ b/pkgs/applications/networking/p2p/flood/default.nix
@@ -21,5 +21,6 @@ buildNpmPackage rec {
     homepage = "https://flood.js.org";
     license = licenses.gpl3Only;
     maintainers = with maintainers; [ thiagokokada winter ];
+    mainProgram = "flood";
   };
 }