attr: 2.4.47 -> 2.4.48

This commit is contained in:
Vaibhav Sagar
2018-12-14 00:27:27 -06:00
committed by Matthew Bauer
parent 60135e9fe6
commit 4e19b09073
2 changed files with 3 additions and 63 deletions
+3 -9
View File
@@ -1,23 +1,17 @@
{ stdenv, fetchurl, gettext }:
stdenv.mkDerivation rec {
name = "attr-2.4.47";
name = "attr-2.4.48";
src = fetchurl {
url = "mirror://savannah/attr/${name}.src.tar.gz";
sha256 = "0nd8y0m6awc9ahv0ciiwf8gy54c8d3j51pw9xg7f7cn579jjyxr5";
url = "mirror://savannah/attr/${name}.tar.gz";
sha256 = "1rr4adzwax4bzr2c00f06zcsljv5y6p9wymz1g89ww7cb2rp5bay";
};
outputs = [ "bin" "dev" "out" "man" "doc" ];
nativeBuildInputs = [ gettext ];
configureFlags = [ "MAKE=make" "MSGFMT=msgfmt" "MSGMERGE=msgmerge" "XGETTEXT=xgettext" "ECHO=echo" "SED=sed" "AWK=gawk" ];
installTargets = [ "install" "install-lib" "install-dev" ];
patches = if (stdenv.hostPlatform.libc == "musl") then [ ./fix-headers-musl.patch ] else null;
postPatch = ''
for script in install-sh include/install-sh; do
patchShebangs $script