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: c6c06b09d76b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3adc9897ecbe
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 4, 2018

  1. freeipmi: 1.5.7 -> 1.6.1

    markuskowa committed Feb 4, 2018
    Copy the full SHA
    ca1a55c View commit details

Commits on Feb 5, 2018

  1. Merge pull request #34598 from markuskowa/freeipmi-pr

    freeipmi: 1.5.7 -> 1.6.1
    adisbladis authored Feb 5, 2018
    Copy the full SHA
    3adc989 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/system/freeipmi/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/system/freeipmi/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ fetchurl, stdenv, libgcrypt, readline }:
{ fetchurl, stdenv, libgcrypt, readline, libgpgerror }:

stdenv.mkDerivation rec {
version = "1.5.7";
version = "1.6.1";
name = "freeipmi-${version}";

src = fetchurl {
url = "mirror://gnu/freeipmi/${name}.tar.gz";
sha256 = "1rdxs33klk6956rg8mn2dxwkk43y5yilvgvbcka8g6v4x0r98v5l";
sha256 = "0jdm1nwsnkj0nzjmcqprmjk25449mhjj25khwzpq3mpjw440wmd2";
};

buildInputs = [ libgcrypt readline ];
buildInputs = [ libgcrypt readline libgpgerror ];

doCheck = true;