about summary refs log tree commit diff
path: root/pkgs/applications/editors/qxmledit
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-15 20:21:58 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-16 17:58:11 +0700
commitbadf51221db8fae81bf9948c39eaf8342dfd5597 (patch)
tree34eeb35ca97f0b081da465e9ddd6c120a9d2b7df /pkgs/applications/editors/qxmledit
parenta9bb54359eeedf2594fdf191de5b673fd1dd102d (diff)
downloadnixlib-badf51221db8fae81bf9948c39eaf8342dfd5597.tar
nixlib-badf51221db8fae81bf9948c39eaf8342dfd5597.tar.gz
nixlib-badf51221db8fae81bf9948c39eaf8342dfd5597.tar.bz2
nixlib-badf51221db8fae81bf9948c39eaf8342dfd5597.tar.lz
nixlib-badf51221db8fae81bf9948c39eaf8342dfd5597.tar.xz
nixlib-badf51221db8fae81bf9948c39eaf8342dfd5597.tar.zst
nixlib-badf51221db8fae81bf9948c39eaf8342dfd5597.zip
treewide: stdenv.lib -> lib
Diffstat (limited to 'pkgs/applications/editors/qxmledit')
-rw-r--r--pkgs/applications/editors/qxmledit/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/qxmledit/default.nix b/pkgs/applications/editors/qxmledit/default.nix
index 4023861cc374..fa4e73a37682 100644
--- a/pkgs/applications/editors/qxmledit/default.nix
+++ b/pkgs/applications/editors/qxmledit/default.nix
@@ -4,7 +4,7 @@
 stdenv.mkDerivation rec {
   name = "qxmledit-${version}" ;
   version = "0.9.15" ;
-  src = fetchFromGitHub ( stdenv.lib.importJSON ./qxmledit.json ) ;
+  src = fetchFromGitHub ( lib.importJSON ./qxmledit.json ) ;
   nativeBuildInputs = [ qmake ] ;
   buildInputs = [ qtbase qtxmlpatterns qtsvg qtscxml qtquick1 libGLU ] ;
   qmakeFlags = [ "CONFIG+=release" ] ;