summaryrefslogtreecommitdiffstats
path: root/lib/meta.nix
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-08-13 12:27:41 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2023-08-13 15:45:37 +0200
commit30364657608090625e9c7f861da53f42f8e913f2 (patch)
treead9a37b5b6b57223858a5334478b810b8738edc7 /lib/meta.nix
parent9591244e00f3a164a96b60585e687d46c565876f (diff)
lib/meta.nix: introduce getExe'
getExe' can be used to get a binary other than the mainProgram from a derivation. Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'lib/meta.nix')
-rw-r--r--lib/meta.nix25
1 files changed, 20 insertions, 5 deletions
diff --git a/lib/meta.nix b/lib/meta.nix
index d32a37fe61d7..50665c9513df 100644
--- a/lib/meta.nix
+++ b/lib/meta.nix
@@ -144,9 +144,24 @@ rec {
=> "/nix/store/am9ml4f4ywvivxnkiaqwr0hyxka1xjsf-mustache-go-1.3.0/bin/mustache"
*/
getExe = x:
- "${lib.getBin x}/bin/${x.meta.mainProgram or (
- # This could be turned into an error when 23.05 is at end of life
- lib.warn "getExe: Package ${lib.strings.escapeNixIdentifier x.meta.name or x.pname or x.name} does not have the meta.mainProgram attribute. We'll assume that the main program has the same name for now, but this behavior is deprecated, because it leads to surprising errors when the assumption does not hold. If the package has a main program, please set `meta.mainProgram` in its definition to make this warning go away. Otherwise, if the package does not have a main program, or if you don't control its definition, specify the full path to the program, such as \"\${lib.getBin foo}/bin/bar\"."
- lib.getName x
- )}";
+ let
+ y = x.meta.mainProgram or (
+ # This could be turned into an error when 23.05 is at end of life
+ lib.warn "getExe: Package ${lib.strings.escapeNixIdentifier x.meta.name or x.pname or x.name} does not have the meta.mainProgram attribute. We'll assume that the main program has the same name for now, but this behavior is deprecated, because it leads to surprising errors when the assumption does not hold. If the package has a main program, please set `meta.mainProgram` in its definition to make this warning go away. Otherwise, if the package does not have a main program, or if you don't control its definition, specify the full path to the program, such as \"\${lib.getBin foo}/bin/bar\"."
+ lib.getName
+ x
+ );
+ in
+ getExe' x y;
+
+ /* Get the path of a program of a derivation.
+
+ Type: getExe' :: derivation -> string -> string
+ Example:
+ getExe' pkgs.hello "hello"
+ => "/nix/store/g124820p9hlv4lj8qplzxw1c44dxaw1k-hello-2.12/bin/hello"
+ getExe' pkgs.imagemagick "convert"
+ => "/nix/store/5rs48jamq7k6sal98ymj9l4k2bnwq515-imagemagick-7.1.1-15/bin/convert"
+ */
+ getExe' = x: y: "${lib.getBin x}/bin/${y}";
}