Added JFS utils and XFS progs

svn path=/nixpkgs/trunk/; revision=11313
This commit is contained in:
Michael Raskin 2008-03-27 19:12:14 +00:00
parent aa2a573225
commit 112c78fa5c
3 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,18 @@
args : with args;
rec {
src = fetchurl {
url = http://jfs.sourceforge.net/project/pub/jfsutils-1.1.12.tar.gz;
sha256 = "04vqdlg90j0mk5jkxpfg9fp6ss4gs1g5pappgns6183q3i6j02hd";
};
buildInputs = [e2fsprogs];
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["doConfigure" "doMakeInstall"];
name = "jfsutils-" + version;
meta = {
description = "IBM JFS utilities";
};
}

View file

@ -0,0 +1,25 @@
args : with args;
rec {
src = fetchurl {
url = ftp://oss.sgi.com/projects/xfs/cmd_tars/xfsprogs_2.9.7-1.tar.gz;
sha256 = "0g4pr1rv4lgc7vab18wiwrcr6jq40fs1krb2vfkgh779p7gf3il7";
};
buildInputs = [libtool gettext e2fsprogs];
configureFlags = [];
preConfigure = FullDepEntry (''
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
'') ["minInit" "doUnpack" "addInputs"];
/* doConfigure should be specified separately */
phaseNames = ["preConfigure" "doConfigure" "doMakeInstall"];
name = "xfsprogs-" + version;
meta = {
description = "SGI XFS utilities";
};
}

View file

@ -3960,6 +3960,11 @@ let pkgs = rec {
inherit fetchurl stdenv;
};
jfsUtilsFun = builderDefsPackage (selectVersion ../os-specific/linux/jfsutils "1.1.12") {
inherit e2fsprogs;
};
jfsUtils = jfsUtilsFun null;
kbd = import ../os-specific/linux/kbd {
inherit fetchurl stdenv bison flex;
};
@ -4492,6 +4497,11 @@ let pkgs = rec {
inherit fetchurl stdenv openssl;
};
xfsProgsFun = builderDefsPackage (selectVersion ../os-specific/linux/xfsprogs "2.9.7-1"){
inherit libtool gettext e2fsprogs;
};
xfsProgs = xfsProgsFun null;
xorg_sys_opengl = import ../os-specific/linux/opengl/xorg-sys {
inherit stdenv xlibs expat libdrm;
};