Merge pull request #108230 from jtojnar/adminer-cleanup

adminer: Clean up
This commit is contained in:
Sandro 2021-01-03 09:47:35 +01:00 committed by GitHub
commit 63bc270f1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ stdenv, libbsd, fetchurl, phpPackages, php }:
{ stdenv, fetchurl, php }:
stdenv.mkDerivation rec {
version = "4.7.8";
@ -10,22 +10,36 @@ stdenv.mkDerivation rec {
sha256 = "0k794agvd8pa3mwl0076i7753fzxd41lhr23aih4l2lbdgnzi68z";
};
nativeBuildInputs = with phpPackages; [ php composer ];
nativeBuildInputs = [
php
php.packages.composer
];
buildPhase = ''
runHook preBuild
composer --no-cache run compile
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir $out
cp adminer-${version}.php $out/adminer.php
runHook postInstall
'';
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 ];
license = with licenses; [ asl20 gpl2Only ];
maintainers = with maintainers; [
jtojnar
sstef
];
platforms = platforms.all;
};
}