tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
php83: 8.3.0RC5 -> 8.3.0RC6
Pol Dellaiera
2 years ago
e455148e
f5242571
+5
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
interpreters
php
8.3.nix
+5
-7
pkgs/development/interpreters/php/8.3.nix
reviewed
···
2
2
3
3
let
4
4
base = (callPackage ./generic.nix (_args // {
5
5
-
version = "8.3.0RC5";
6
6
-
hash = null;
7
7
-
})).overrideAttrs (oldAttrs: {
8
8
-
src = fetchurl {
9
9
-
url = "https://downloads.php.net/~jakub/php-8.3.0RC5.tar.xz";
10
10
-
hash = "sha256-I42ded2tZO5ZQ+iU5DeNKjT+mNNoowew8gNOYDeB5aY=";
5
5
+
version = "8.3.0RC6";
6
6
+
phpSrc = fetchurl {
7
7
+
url = "https://downloads.php.net/~eric/php-8.3.0RC6.tar.xz";
8
8
+
hash = "sha256-Hntdz+vEkh7EQgnB4IrnG2sQ5bG2uJW7T3a0RIbHBe0=";
11
9
};
12
12
-
});
10
10
+
}));
13
11
in
14
12
base.withExtensions ({ all, ... }: with all; ([
15
13
bcmath