adminer: 4.7.9 -> 4.8.0

This commit is contained in:
R. RyanTM 2021-02-11 12:57:56 +00:00 committed by Jan Tojnar
parent 45883c4df9
commit 987955680f

View file

@ -1,13 +1,13 @@
{ lib, stdenv, fetchurl, php }:
stdenv.mkDerivation rec {
version = "4.7.9";
version = "4.8.0";
pname = "adminer";
# not using fetchFromGitHub as the git repo relies on submodules that are included in the tar file
src = fetchurl {
url = "https://github.com/vrana/adminer/releases/download/v${version}/adminer-${version}.tar.gz";
sha256 = "sha256-V7cPdCcCjFlA3ykWe+F/fUO7+kZiOpqMgP0hHy6WDJE=";
sha256 = "sha256-T2LEUoIbFrMta+wP7PNci0QkFYrJZmWP3RP/JzgqUoc=";
};
nativeBuildInputs = [