diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-02-10 16:40:35 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-02-10 17:04:29 +0100 |
commit | d294939fec23095973aa2b8f87e30accce41d180 (patch) | |
tree | 73868ea31e3c456b8d8a9951916330e3a46b4e3e | |
parent | f00e1c4bc8279400edf0ef56983e59a3fe95a8f3 (diff) | |
download | Nix-d294939fec23095973aa2b8f87e30accce41d180.tar.gz Nix-d294939fec23095973aa2b8f87e30accce41d180.tar.zst Nix-d294939fec23095973aa2b8f87e30accce41d180.zip |
Fix adminer url
-rw-r--r-- | pkgs/webapps/adminer/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/webapps/adminer/default.nix b/pkgs/webapps/adminer/default.nix index b78a2e0..203b565 100644 --- a/pkgs/webapps/adminer/default.nix +++ b/pkgs/webapps/adminer/default.nix | |||
@@ -3,7 +3,7 @@ stdenv.mkDerivation rec { | |||
3 | version = "4.7.1"; | 3 | version = "4.7.1"; |
4 | name = "adminer-${version}"; | 4 | name = "adminer-${version}"; |
5 | src = fetchurl { | 5 | src = fetchurl { |
6 | url = "https://www.adminer.org/static/download/${version}/${name}.php"; | 6 | url = "https://github.com/vrana/adminer/releases/download/v${version}/${name}.php"; |
7 | sha256 = "00gnck9vd44wc6ihf7hh4ma6jvdsw69xgjlkbrdf6irnni6rnvhn"; | 7 | sha256 = "00gnck9vd44wc6ihf7hh4ma6jvdsw69xgjlkbrdf6irnni6rnvhn"; |
8 | }; | 8 | }; |
9 | phases = "installPhase"; | 9 | phases = "installPhase"; |