3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/filesystems/xfsprogs/default.nix

58 lines
1.4 KiB
Nix
Raw Normal View History

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