mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ipmitool: 1.8.17 -> 1.8.18
This commit is contained in:
parent
d7624d6677
commit
1ae0f2a1d4
1 changed files with 8 additions and 7 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue