From 108bdac3d99b6d94d3740422af5945e510238304 Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Fri, 15 Jan 2021 12:42:41 +0700 Subject: pkgs/applications: stdenv.lib -> lib --- pkgs/applications/office/fava/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/applications/office/fava') diff --git a/pkgs/applications/office/fava/default.nix b/pkgs/applications/office/fava/default.nix index cee8098f45152..5c5d21860cd20 100644 --- a/pkgs/applications/office/fava/default.nix +++ b/pkgs/applications/office/fava/default.nix @@ -1,4 +1,4 @@ -{ stdenv, python3, beancount }: +{ lib, stdenv, python3, beancount }: let inherit (python3.pkgs) buildPythonApplication fetchPypi; @@ -38,7 +38,7 @@ buildPythonApplication rec { meta = { homepage = "https://beancount.github.io/fava"; description = "Web interface for beancount"; - license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } -- cgit 1.4.1