about summary refs log tree commit diff
path: root/pkgs/servers/adminer/default.nix
blob: c58d2e6c2ba65d54b224b0219ccc07943cfa2f32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, libbsd, fetchurl, phpPackages, php }:

stdenv.mkDerivation rec {
  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 = "1rvvc7xml7ycpbpjgqbgkan8djplx67balrmfignk1b6h9cw3l4q";
  };

  nativeBuildInputs = with phpPackages; [ php composer ];

  buildPhase = ''
    composer --no-cache run compile
  '';

  installPhase = ''
    mkdir $out
    cp adminer-${version}.php $out/adminer.php
  '';

  meta = with stdenv.lib; {
    description = "Database management in a single PHP file";
    homepage = "https://www.adminer.org";
    license = with licenses; [ asl20 gpl2 ];
    maintainers = with maintainers; [ sstef ];
    platforms = platforms.all;
  };
}