switch to using lib directly instead of stdenv

This commit is contained in:
kolaente 2021-06-09 17:03:59 +02:00
parent 2250c7338e
commit f11001c189
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit
{ lib, fetchgit
, makeWrapper, makeDesktopItem, mkYarnPackage, callPackage
, electron_12
}:
@ -65,7 +65,7 @@ in mkYarnPackage rec {
};
meta = with stdenv.lib; {
meta = with lib; {
description = "Desktop App of the Vikunja to-do list app";
homepage = "https://vikunja.io/";
license = licenses.gpl3Plus;