ipmitool: 1.8.17 -> 1.8.18

This commit is contained in:
Franz Pletz 2017-06-20 02:43:36 +02:00
parent d7624d6677
commit 1ae0f2a1d4
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,15 +1,15 @@
{ fetchurl, stdenv, openssl, static ? false }:
{ stdenv, lib, fetchurl, openssl, static ? false }:
let
pkgname = "ipmitool";
version = "1.8.17";
version = "1.8.18";
in
stdenv.mkDerivation {
name = "${pkgname}-${version}";
src = fetchurl {
url = "mirror://sourceforge/${pkgname}/${pkgname}-${version}.tar.gz";
sha256 = "0qcrz1d1dbjg46n3fj6viglzcxlf2q15xa7bx9w1hm2hq1r3jzbi";
sha256 = "0kfh8ny35rvwxwah4yv91a05qwpx74b5slq2lhrh71wz572va93m";
};
patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
@ -28,10 +28,11 @@ stdenv.mkDerivation {
makeFlags = if static then "AM_LDFLAGS=-all-static" else "";
dontDisableStatic = static;
meta = {
meta = with lib; {
description = ''Command-line interface to IPMI-enabled devices'';
license = stdenv.lib.licenses.bsd3;
homepage = http://ipmitool.sourceforge.net;
platforms = stdenv.lib.platforms.unix;
license = licenses.bsd3;
homepage = https://sourceforge.net/projects/ipmitool/;
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
};
}