about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-05-18 09:36:24 +0000
committerGitHub <noreply@github.com>2019-05-18 09:36:24 +0000
commit6cf583cf2f8d3cb89fa8a4d6edd86f4236862ea6 (patch)
tree6590fc8630f685b81d4f1a5487a54b31785f3c8b /pkgs/build-support
parentd40443ba6de52faf08bb33198c6e501f46b85a89 (diff)
parent786f02f7a45621b9f628f63649ff92546aff83b7 (diff)
downloadnixlib-6cf583cf2f8d3cb89fa8a4d6edd86f4236862ea6.tar
nixlib-6cf583cf2f8d3cb89fa8a4d6edd86f4236862ea6.tar.gz
nixlib-6cf583cf2f8d3cb89fa8a4d6edd86f4236862ea6.tar.bz2
nixlib-6cf583cf2f8d3cb89fa8a4d6edd86f4236862ea6.tar.lz
nixlib-6cf583cf2f8d3cb89fa8a4d6edd86f4236862ea6.tar.xz
nixlib-6cf583cf2f8d3cb89fa8a4d6edd86f4236862ea6.tar.zst
nixlib-6cf583cf2f8d3cb89fa8a4d6edd86f4236862ea6.zip
Merge pull request #60406 from JohnAZoidberg/remove-isnull
treewide: Remove usage of isNull
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/emacs/melpa.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/emacs/melpa.nix b/pkgs/build-support/emacs/melpa.nix
index 96e61bbf90e5..e2ec84c75e66 100644
--- a/pkgs/build-support/emacs/melpa.nix
+++ b/pkgs/build-support/emacs/melpa.nix
@@ -31,7 +31,7 @@ in
 import ./generic.nix { inherit lib stdenv emacs texinfo; } ({
 
   ename =
-    if isNull(ename)
+    if ename == null
     then pname
     else ename;