summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/ghostwriter/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/ghostwriter/default.nix')
-rw-r--r--pkgs/applications/editors/ghostwriter/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/ghostwriter/default.nix b/pkgs/applications/editors/ghostwriter/default.nix
index aa67124c1146..4da73d0d2e61 100644
--- a/pkgs/applications/editors/ghostwriter/default.nix
+++ b/pkgs/applications/editors/ghostwriter/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, mkDerivation, fetchFromGitHub, qmake, pkgconfig, qttools, qtwebengine, hunspell }:
+{ lib, stdenv, mkDerivation, fetchFromGitHub, qmake, pkgconfig, qttools, qtwebengine, hunspell }:
mkDerivation rec {
pname = "ghostwriter";
@@ -15,7 +15,7 @@ mkDerivation rec {
buildInputs = [ qtwebengine hunspell ];
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "A cross-platform, aesthetic, distraction-free Markdown editor";
homepage = src.meta.homepage;
license = licenses.gpl3Plus;