* Refactoring: move most filesystem utilities / FUSE filesystems to
tools/filesystems. Previously they were all over the place. svn path=/nixpkgs/trunk/; revision=18809
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, libtool, gettext, libuuid }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "xfsprogs-2.9.7-1";
|
||||
|
||||
src = fetchurl {
|
||||
urls = [ ftp://oss.sgi.com/projects/xfs/previous/cmd_tars/xfsprogs_2.9.7-1.tar.gz http://ftp.lfs-matrix.org/pub/blfs/svn/x/xfsprogs_2.9.7-1.tar.gz ];
|
||||
sha256 = "0g4pr1rv4lgc7vab18wiwrcr6jq40fs1krb2vfkgh779p7gf3il7";
|
||||
};
|
||||
|
||||
buildInputs = [libtool gettext libuuid];
|
||||
|
||||
preConfigure =
|
||||
''
|
||||
sp_path=$(echo $PATH | sed -e 's/:/ /g');
|
||||
sed -e 's@/usr/bin@'"$PATH: $sp_path"'@g' -i configure
|
||||
sed -e 's@/usr/local/bin@'"$PATH: sp_path"'@g' -i configure
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "SGI XFS utilities";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user