nixpkgs/pkgs/servers/adminer/default.nix

46 lines
990 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, php }:
2020-03-04 09:36:00 +00:00
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 = [
php
php.packages.composer
];
2020-03-04 09:36:00 +00:00
buildPhase = ''
runHook preBuild
2020-03-04 09:36:00 +00:00
composer --no-cache run compile
runHook postBuild
2020-03-04 09:36:00 +00:00
'';
installPhase = ''
runHook preInstall
2020-03-04 09:36:00 +00:00
mkdir $out
cp adminer-${version}.php $out/adminer.php
runHook postInstall
2020-03-04 09:36:00 +00:00
'';
meta = with lib; {
2020-03-04 09:36:00 +00:00
description = "Database management in a single PHP file";
homepage = "https://www.adminer.org";
license = with licenses; [ asl20 gpl2Only ];
maintainers = with maintainers; [
jtojnar
sstef
];
2020-03-04 09:36:00 +00:00
platforms = platforms.all;
};
}