fix stdenv deprications

This commit is contained in:
foosinn 2021-12-06 12:42:00 +01:00
parent 4d99a375f0
commit 447aeca1ed
8 changed files with 9 additions and 10 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, python38Packages, wrapQtAppsHook }:
{ stdenv, lib, fetchFromGitHub, python38Packages, wrapQtAppsHook }:
python38Packages.buildPythonApplication rec {
pname = "nagstamon";
@ -11,7 +11,6 @@ python38Packages.buildPythonApplication rec {
sha256 = "1l095halb55qinaik51p3lxiln1s034dr28k7ra6xzrrv9l1x1xw";
};
# Test assumes darwin
doCheck = false;
nativeBuildInputs = [ wrapQtAppsHook ];
@ -34,7 +33,7 @@ python38Packages.buildPythonApplication rec {
xlib
];
meta = with stdenv.lib; {
meta = with lib; {
description = "A status monitor for the desktop";
homepage = "https://nagstamon.ifw-dresden.de/";
license = licenses.gpl2;