pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ fetchurl, stdenv, libgcrypt, readline, libgpgerror }:
|
||||
{ fetchurl, lib, stdenv, libgcrypt, readline, libgpgerror }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.6.6";
|
||||
@@ -33,10 +33,10 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://www.gnu.org/software/freeipmi/";
|
||||
downloadPage = "https://www.gnu.org/software/freeipmi/download.html";
|
||||
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
license = lib.licenses.gpl3Plus;
|
||||
|
||||
maintainers = with stdenv.lib.maintainers; [ raskin ];
|
||||
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
||||
maintainers = with lib.maintainers; [ raskin ];
|
||||
platforms = lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
||||
|
||||
updateWalker = true;
|
||||
inherit version;
|
||||
|
||||
Reference in New Issue
Block a user