Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b5742ab4937c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 28c2c0156da9
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 17, 2020

  1. adminer: 4.7.6 -> 4.7.7

    r-ryantm committed May 17, 2020
    Copy the full SHA
    1fc8b73 View commit details
  2. Merge pull request #87996 from r-ryantm/auto-update/adminer

    adminer: 4.7.6 -> 4.7.7
    ryantm authored May 17, 2020
    Copy the full SHA
    28c2c01 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/adminer/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/adminer/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, libbsd, fetchurl, phpPackages, php }:

stdenv.mkDerivation rec {
version = "4.7.6";
version = "4.7.7";
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 = "1zgvscz7jk32qga8hp2dg89h7y72v05vz4yh4lq2ahhwwkbnsxpi";
sha256 = "1rvvc7xml7ycpbpjgqbgkan8djplx67balrmfignk1b6h9cw3l4q";
};

nativeBuildInputs = with phpPackages; [ php composer ];