From 9bc8c75867dfd3ccea1de8ed2f61d0fb576d46d9 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 17 Apr 2016 15:56:33 +0200 Subject: [PATCH] perl-Class-MethodMaker: fix build --- pkgs/top-level/perl-packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index f2cc7b07da0..bdb4349e1a6 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1819,7 +1819,8 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/S/SC/SCHWIGON/class-methodmaker/${name}.tar.gz"; sha256 = "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"; }; - preConfigure = "patchShebangs ."; + # Remove unnecessary, non-autoconf, configure script. + prePatch = "rm configure"; meta = { description = "A module for creating generic methods"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];