st: refactor deprecated `isNull' function
This commit is contained in:
parent
01c3847b9c
commit
bd2cef064c
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
with stdenv.lib;
|
||||
|
||||
let patches' = if isNull patches then [] else patches;
|
||||
let patches' = if patches == null then [] else patches;
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "st-0.7";
|
||||
|
||||
|
|
Loading…
Reference in a new issue