From 618e45c0f3a1ecef8862b584cd7a252fb3ee2d80 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 21 Jan 2011 19:15:10 +0000 Subject: [PATCH] Adding ipmiutil svn path=/nixpkgs/trunk/; revision=25660 --- .../interpreters/clisp/default.nix | 4 +- pkgs/tools/system/ipmiutil/default.nix | 55 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 59 insertions(+), 2 deletions(-) create mode 100644 pkgs/tools/system/ipmiutil/default.nix diff --git a/pkgs/development/interpreters/clisp/default.nix b/pkgs/development/interpreters/clisp/default.nix index ca57be85b260..c985da9a5a2d 100644 --- a/pkgs/development/interpreters/clisp/default.nix +++ b/pkgs/development/interpreters/clisp/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, libsigsegv, gettext, ncurses, readline, libX11 , libXau, libXt, pcre, zlib, libXpm, xproto, libXext, xextproto -, libffi, libffcall, coreutils }: +, libffi, libffcall, coreutils}: stdenv.mkDerivation rec { v = "2.49"; @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { configureFlags = '' - --with-readline builddir --with-dynamic-ffi + --with-readline builddir --with-dynamic-ffi --with-ffcall --with-module=clx/new-clx --with-module=i18n --with-module=bindings/glibc --with-module=pcre --with-module=rawsock --with-module=readline --with-module=syscalls --with-module=wildcard --with-module=zlib diff --git a/pkgs/tools/system/ipmiutil/default.nix b/pkgs/tools/system/ipmiutil/default.nix new file mode 100644 index 000000000000..d5252116f640 --- /dev/null +++ b/pkgs/tools/system/ipmiutil/default.nix @@ -0,0 +1,55 @@ +x@{builderDefsPackage + , openssl + , ...}: +builderDefsPackage +(a : +let + helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ + []; + + buildInputs = map (n: builtins.getAttr n x) + (builtins.attrNames (builtins.removeAttrs x helperArgNames)); + sourceInfo = rec { + baseName="ipmiutil"; + version="2.7.3"; + name="${baseName}-${version}"; + project="${baseName}"; + url="mirror://sourceforge/project/${project}/${baseName}/${name}.tar.gz"; + hash="0z6ykz5db4ws7hpi25waf9vznwsh0vp819h5s7s8r054vxslrfpq"; + }; +in +rec { + src = a.fetchurl { + url = sourceInfo.url; + sha256 = sourceInfo.hash; + }; + + inherit (sourceInfo) name version; + inherit buildInputs; + + /* doConfigure should be removed if not needed */ + phaseNames = ["doConfigure" "fixMakefile" "doMakeInstall"]; + + fixMakefile = a .fullDepEntry '' + sed -e "s@/usr@$out@g" -i Makefile */Makefile */*/Makefile + sed -e "s@/etc@$out/etc@g" -i Makefile */Makefile + sed -e "s@/var@$out/var@g" -i Makefile */Makefile + '' ["minInit" "doConfigure"]; + + meta = { + description = "IPMI utilities"; + maintainers = with a.lib.maintainers; + [ + raskin + ]; + platforms = with a.lib.platforms; + linux; + license = a.lib.licenses.bsd3; + }; + passthru = { + updateInfo = { + downloadPage = "http://sourceforge.net/projects/ipmiutil/files/ipmiutil/"; + }; + }; +}) x + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ee7f85afb66b..1c075ac1b688 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -802,6 +802,8 @@ let static = false; }; + ipmiutil = callPackage ../utils/system/ipmiutil {}; + ised = callPackage ../tools/misc/ised {}; jdiskreport = callPackage ../tools/misc/jdiskreport { };