lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

phpExtensions.pinba: replace version number

authored by

Sandro Jäckel and committed by
Sandro Jäckel
c276f24e 1592f4ca

+2 -2
+2 -2
pkgs/development/php-packages/pinba/default.nix
··· 1 1 { buildPecl, lib, fetchFromGitHub }: 2 2 3 - buildPecl { 3 + buildPecl rec { 4 4 pname = "pinba"; 5 5 version = "1.1.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tony2001"; 9 9 repo = "pinba_extension"; 10 - rev = "RELEASE_1_1_2"; 10 + rev = "RELEASE_${lib.replaceStrings ["."] ["_"] version}"; 11 11 sha256 = "0wqcqq6sb51wiawa37hbd1h9dbvmyyndzdvz87xqji7lpr9vn8jy"; 12 12 }; 13 13