acdbf504e3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ipmiutil/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - directory tree listing: https://gist.github.com/706664f90d887aff46e82433584920a1
32 lines
962 B
Nix
32 lines
962 B
Nix
{ stdenv, fetchurl, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
baseName = "ipmiutil";
|
|
version = "3.1.0";
|
|
name = "${baseName}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/${baseName}/${name}.tar.gz";
|
|
sha256 = "1vvdydql5gmq103wr0ris2fvr3l5an2a8zgg2mmgdi88pxi11xfx";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
preBuild = ''
|
|
sed -e "s@/usr@$out@g" -i Makefile */Makefile */*/Makefile
|
|
sed -e "s@/etc@$out/etc@g" -i Makefile */Makefile */*/Makefile
|
|
sed -e "s@/var@$out/var@g" -i Makefile */Makefile */*/Makefile
|
|
'';
|
|
|
|
NIX_CFLAGS_COMPILE = "-fno-stack-protector";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An easy-to-use IPMI server management utility";
|
|
homepage = http://ipmiutil.sourceforge.net/;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.bsd3;
|
|
downloadPage = "http://sourceforge.net/projects/ipmiutil/files/ipmiutil/";
|
|
inherit version;
|
|
};
|
|
}
|