about summary refs log tree commit diff
path: root/pkgs/development/libraries/soundtouch
diff options
context:
space:
mode:
authorMalo Bourgon <mbourgon@gmail.com>2022-05-04 17:52:27 -0700
committerMalo Bourgon <mbourgon@gmail.com>2022-05-04 18:11:50 -0700
commit9e4be532219685cdd81e4db54f9fc061d250ba25 (patch)
tree981ea8dadbb4974ed31df2e13049b7a7361d5669 /pkgs/development/libraries/soundtouch
parent16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c (diff)
treewide: add meta.mainProgram to some libraries
where a single bin is provided and someone might actually want to run it
Diffstat (limited to 'pkgs/development/libraries/soundtouch')
-rw-r--r--pkgs/development/libraries/soundtouch/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/soundtouch/default.nix b/pkgs/development/libraries/soundtouch/default.nix
index b29095f7e1991..b03a7cc072287 100644
--- a/pkgs/development/libraries/soundtouch/default.nix
+++ b/pkgs/development/libraries/soundtouch/default.nix
@@ -21,7 +21,8 @@ stdenv.mkDerivation rec {
     description = "A program and library for changing the tempo, pitch and playback rate of audio";
     homepage = "https://www.surina.net/soundtouch/";
     license = licenses.lgpl21Plus;
-    platforms = platforms.all;
     maintainers = with maintainers; [ orivej ];
+    mainProgram = "soundstretch";
+    platforms = platforms.all;
   };
 }