blob: c471b50a8f3b47e9dff29cf5c330827e0b602b62 (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
{
lib,
stdenv,
fetchurl,
php,
nix-update-script,
unzip,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "adminer";
version = "5.5.1";
# 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${finalAttrs.version}/adminer-${finalAttrs.version}.zip";
hash = "sha256-vgPo43c56eD424z3SyR8i7UkLzt2/PaUaT/7778yl7M=";
};
nativeBuildInputs = [
php
php.packages.composer
unzip
];
buildPhase = ''
runHook preBuild
composer --no-cache run compile
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir $out
cp adminer-${finalAttrs.version}.php $out/adminer.php
runHook postInstall
'';
passthru = {
updateScript = nix-update-script { };
};
meta = {
description = "Database management in a single PHP file";
homepage = "https://www.adminer.org";
license = with lib.licenses; [
asl20
gpl2Only
];
maintainers = with lib.maintainers; [
jtojnar
sstef
];
platforms = lib.platforms.all;
};
})
|