summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEmery Hemingway <ehmry@posteo.net>2020-04-10 13:06:28 +0530
committerEmery Hemingway <ehmry@posteo.net>2020-04-10 13:06:28 +0530
commitf8cc3fcb3aca88114ae48eb82ddadbaa91508710 (patch)
treec9552f7a1fc67a521836b6da9a8df99385b2e616 /pkgs
parent4ec4715c64fb4d003703786689b191c207966299 (diff)
downloadnixpkgs-f8cc3fcb3aca88114ae48eb82ddadbaa91508710.tar
nixpkgs-f8cc3fcb3aca88114ae48eb82ddadbaa91508710.tar.gz
nixpkgs-f8cc3fcb3aca88114ae48eb82ddadbaa91508710.tar.bz2
nixpkgs-f8cc3fcb3aca88114ae48eb82ddadbaa91508710.tar.lz
nixpkgs-f8cc3fcb3aca88114ae48eb82ddadbaa91508710.tar.xz
nixpkgs-f8cc3fcb3aca88114ae48eb82ddadbaa91508710.tar.zst
nixpkgs-f8cc3fcb3aca88114ae48eb82ddadbaa91508710.zip
alephone: fix maintainer propagation in wrapper
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/games/alephone/default.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/games/alephone/default.nix b/pkgs/games/alephone/default.nix
index 1936c93ab84..d45bb984547 100644
--- a/pkgs/games/alephone/default.nix
+++ b/pkgs/games/alephone/default.nix
@@ -90,10 +90,7 @@ in self // {
           --add-flags $out/data/$pname
       '';
 
-      meta = with stdenv.lib;
-        {
-          maintainers = with maintainers; [ ehmry ];
-          inherit (alephone.meta) platforms;
-        } // meta;
-    } // extraArgs);
+    } // extraArgs) // {
+      meta = alephone.meta // meta;
+    };
 }