xfsprogs: removed unneeded make configure invocation and build inputs

build log says `make: 'configure' is up to date.`, meaning that the
invocation is a nop
This commit is contained in:
Nick Cao 2023-05-24 15:50:37 +08:00
parent 760c080184
commit ee55a7e0b6
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
{ lib, stdenv, buildPackages, fetchurl, autoconf, automake, gettext, libtool, pkg-config
{ lib, stdenv, buildPackages, fetchurl, gettext, pkg-config
, icu, libuuid, readline, inih, liburcu
, nixosTests
}:
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [
autoconf automake libtool gettext pkg-config
gettext pkg-config
libuuid # codegen tool uses libuuid
];
buildInputs = [ readline icu inih liburcu ];
@ -33,7 +33,6 @@ stdenv.mkDerivation rec {
substituteInPlace "$file" \
--replace '@sbindir@' '/run/current-system/sw/bin'
done
make configure
patchShebangs ./install-sh
'';