Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b79a47404423
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5ee77aa47c32
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 24, 2020

  1. ipmiutil: 3.1.5 -> 3.1.6

    r-ryantm committed Mar 24, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    lucasfernog Lucas Fernandes Nogueira
    Copy the full SHA
    83b3cb8 View commit details
  2. Merge pull request #83272 from r-ryantm/auto-update/ipmiutil

    ipmiutil: 3.1.5 -> 3.1.6
    7c6f434c authored Mar 24, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    lucasfernog Lucas Fernandes Nogueira
    Copy the full SHA
    5ee77aa View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/system/ipmiutil/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/system/ipmiutil/default.nix
Original file line number Diff line number Diff line change
@@ -2,12 +2,12 @@

stdenv.mkDerivation rec {
baseName = "ipmiutil";
version = "3.1.5";
version = "3.1.6";
name = "${baseName}-${version}";

src = fetchurl {
url = "mirror://sourceforge/project/${baseName}/${name}.tar.gz";
sha256 = "18q1nc2caaixy3dr2axdvwq37iz916piarvmg0jdfzaxfpaxpk2q";
sha256 = "0jlfb4firph3hc0854n7cw7yjwlax3wdxn37r2jl0l94dj684548";
};

buildInputs = [ openssl ];
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "An easy-to-use IPMI server management utility";
homepage = http://ipmiutil.sourceforge.net/;
homepage = "http://ipmiutil.sourceforge.net/";
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = licenses.bsd3;