summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Olsen <daniel.olsen99@gmail.com>2022-06-27 02:25:23 +0200
committerDaniel Olsen <daniel.olsen99@gmail.com>2022-09-30 02:15:13 +0200
commit394cc59062dae911dcfdccd194949601fd136f8c (patch)
tree5d127eb5ba77ba53a382f307e25d237e15dd9b0c
parent9ccaecf0e71392a3eb33f1bdc8a8210c8cfc2144 (diff)
downloadnixpkgs-394cc59062dae911dcfdccd194949601fd136f8c.tar
nixpkgs-394cc59062dae911dcfdccd194949601fd136f8c.tar.gz
nixpkgs-394cc59062dae911dcfdccd194949601fd136f8c.tar.bz2
nixpkgs-394cc59062dae911dcfdccd194949601fd136f8c.tar.lz
nixpkgs-394cc59062dae911dcfdccd194949601fd136f8c.tar.xz
nixpkgs-394cc59062dae911dcfdccd194949601fd136f8c.tar.zst
nixpkgs-394cc59062dae911dcfdccd194949601fd136f8c.zip
libaom: specify meta.outputsToInstall
-rw-r--r--pkgs/development/libraries/libaom/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libaom/default.nix b/pkgs/development/libraries/libaom/default.nix
index 2578126d3ab..9bee726e500 100644
--- a/pkgs/development/libraries/libaom/default.nix
+++ b/pkgs/development/libraries/libaom/default.nix
@@ -75,6 +75,7 @@ stdenv.mkDerivation rec {
     changelog   = "https://aomedia.googlesource.com/aom/+/refs/tags/v${version}/CHANGELOG";
     maintainers = with maintainers; [ primeos kiloreux dandellion ];
     platforms   = platforms.all;
+    outputsToInstall = [ "bin" ];
     license = licenses.bsd2;
   };
 }