about summary refs log tree commit diff
path: root/pkgs/applications/editors/oed
diff options
context:
space:
mode:
authorMalo Bourgon <mbourgon@gmail.com>2022-05-04 17:46:39 -0700
committerMalo Bourgon <mbourgon@gmail.com>2022-05-04 18:08:19 -0700
commit16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c (patch)
tree70613ead07ec6032ead7b0f068c62ccf7ea688f7 /pkgs/applications/editors/oed
parent5d4bdece1f2d20eb16e5ee8e634134bd41ba02b1 (diff)
downloadnixlib-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar
nixlib-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar.gz
nixlib-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar.bz2
nixlib-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar.lz
nixlib-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar.xz
nixlib-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar.zst
nixlib-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.zip
treewide: add meta.mainProgram to many packages
Diffstat (limited to 'pkgs/applications/editors/oed')
-rw-r--r--pkgs/applications/editors/oed/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/editors/oed/default.nix b/pkgs/applications/editors/oed/default.nix
index f4012220c50d..a17199c2ff6a 100644
--- a/pkgs/applications/editors/oed/default.nix
+++ b/pkgs/applications/editors/oed/default.nix
@@ -24,9 +24,10 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with lib; {
-    homepage = "https://github.com/ibara/oed";
     description = "Portable ed editor from OpenBSD";
+    homepage = "https://github.com/ibara/oed";
     license = with licenses; [ bsd2 ];
+    mainProgram = "ed";
     platforms = platforms.unix;
   };
 }