php: Drop usage of isPhp73 and isPhp74

These variables have bad names that doesn't really make full sense
This commit is contained in:
Elis Hirwing
2020-10-11 20:10:58 +02:00
parent 6d0abdd9c1
commit 3d31818f1a
4 changed files with 15 additions and 9 deletions
@@ -1,6 +1,10 @@
{ buildPecl, lib, fetchFromGitHub, isPhp73, isPhp74, pcre' }:
{ buildPecl, lib, fetchFromGitHub, php, pcre' }:
let
pname = "pthreads";
isPhp73 = lib.versionAtLeast php.version "7.3";
isPhp74 = lib.versionAtLeast php.version "7.4";
version = if isPhp73 then "3.2.0-dev" else "3.2.0";
src = fetchFromGitHub ({