mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
58 lines
1.4 KiB
Nix
58 lines
1.4 KiB
Nix
{ stdenv, fetchurl, gettext, libuuid, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xfsprogs-4.2.0";
|
|
|
|
src = fetchurl {
|
|
urls = map (dir: "ftp://oss.sgi.com/projects/xfs/${dir}/${name}.tar.gz")
|
|
[ "cmd_tars" "previous" ];
|
|
sha256 = "0q2j1rrh37kqyihaq5lc31xdi36lgg9asidaad0fada61ynv3six";
|
|
};
|
|
|
|
prePatch = ''
|
|
sed -i "s,/bin/bash,$(type -P bash),g" install-sh
|
|
sed -i "s,ldconfig,$(type -P ldconfig),g" configure m4/libtool.m4
|
|
|
|
# Fixes from gentoo 3.2.1 ebuild
|
|
sed -i "/^PKG_DOC_DIR/s:@pkg_name@:${name}:" include/builddefs.in
|
|
sed -i "/LLDFLAGS.*libtool-libs/d" $(find -name Makefile)
|
|
sed -i '/LIB_SUBDIRS/s:libdisk::' Makefile
|
|
'';
|
|
|
|
patches = [
|
|
# This patch fixes shared libs installation, still not fixed in 4.2.0
|
|
./4.2.0-sharedlibs.patch
|
|
];
|
|
|
|
buildInputs = [ gettext libuuid readline ];
|
|
|
|
outputs = [ "out" "lib" ];
|
|
|
|
preConfigure = ''
|
|
NIX_LDFLAGS="$(echo $NIX_LDFLAGS | sed "s,$out,$lib,g")"
|
|
'';
|
|
|
|
configureFlags = [
|
|
"MAKE=make"
|
|
"MSGFMT=msgfmt"
|
|
"MSGMERGE=msgmerge"
|
|
"XGETTEXT=xgettext"
|
|
"--disable-lib64"
|
|
"--enable-readline"
|
|
"--includedir=$(lib)/include"
|
|
"--libdir=$(lib)/lib"
|
|
];
|
|
|
|
installFlags = [ "install-dev" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://xfs.org/;
|
|
description = "SGI XFS utilities";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|