nixpkgs/pkgs/servers/adminer/default.nix

32 lines
886 B
Nix
Raw Normal View History

2020-03-04 09:36:00 +00:00
{ stdenv, libbsd, fetchurl, phpPackages, php }:
stdenv.mkDerivation rec {
2020-12-07 10:50:10 +00:00
version = "4.7.8";
2020-03-04 09:36:00 +00:00
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";
2020-12-07 10:50:10 +00:00
sha256 = "0k794agvd8pa3mwl0076i7753fzxd41lhr23aih4l2lbdgnzi68z";
2020-03-04 09:36:00 +00:00
};
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;
};
}