summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorHarrison Houghton <hora.rhino@gmail.com>2021-05-25 20:01:25 -0400
committerHarrison Houghton <hora.rhino@gmail.com>2021-05-25 20:03:42 -0400
commit3e4aeea693d3473427d7a7a4b028c3a6a1a8908e (patch)
tree3b7f16b3c42fa5ab6996933bfebe864658875d36 /pkgs/top-level
parentacb51e6ca3b5b6f491a34fadd2232b3745f8eb20 (diff)
downloadnixpkgs-3e4aeea693d3473427d7a7a4b028c3a6a1a8908e.tar
nixpkgs-3e4aeea693d3473427d7a7a4b028c3a6a1a8908e.tar.gz
nixpkgs-3e4aeea693d3473427d7a7a4b028c3a6a1a8908e.tar.bz2
nixpkgs-3e4aeea693d3473427d7a7a4b028c3a6a1a8908e.tar.lz
nixpkgs-3e4aeea693d3473427d7a7a4b028c3a6a1a8908e.tar.xz
nixpkgs-3e4aeea693d3473427d7a7a4b028c3a6a1a8908e.tar.zst
nixpkgs-3e4aeea693d3473427d7a7a4b028c3a6a1a8908e.zip
pinball: fix
There was an override of autoconfHook to use automake 1.15.x; I'm not
sure what changed since this package was added but it explicitly needs
1.16.1 or greater for the submodule libltdl.

Anyhow, just remove the override.
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index d7f04f17592..3e6a1251b57 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -28524,10 +28524,7 @@ in
     boost = boost166;
   };
 
-  pinball = callPackage ../games/pinball {
-    autoreconfHook = with buildPackages;
-      autoreconfHook.override { automake = automake115x; };
-  };
+  pinball = callPackage ../games/pinball { };
 
   pingus = callPackage ../games/pingus {};