about summary refs log tree commit diff
path: root/pkgs/development/libraries/matio/default.nix
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/matio/default.nix
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/matio/default.nix')
-rw-r--r--pkgs/development/libraries/matio/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/matio/default.nix b/pkgs/development/libraries/matio/default.nix
index 7a227e57560d1..1805de0264cea 100644
--- a/pkgs/development/libraries/matio/default.nix
+++ b/pkgs/development/libraries/matio/default.nix
@@ -9,9 +9,10 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "A C library for reading and writing Matlab MAT files";
+    homepage = "http://matio.sourceforge.net/";
     license = licenses.bsd2;
-    platforms = platforms.all;
     maintainers = [ maintainers.vbgl ];
-    homepage = "http://matio.sourceforge.net/";
+    mainProgram = "matdump";
+    platforms = platforms.all;
   };
 }