summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/adminer
diff options
context:
space:
mode:
authorStephane Schitter <stephane@github.frozenid.net>2020-03-04 10:36:00 +0100
committerStephane Schitter <stephane@github.frozenid.net>2020-03-04 22:07:18 +0100
commit950cde99c112a506b682c4cfefce8071e1266da5 (patch)
treef9280c4bc44a6357e57890df33b8124f70315ccb /pkgs/servers/adminer
parent24720dd250cb26025d6dd5dbaf089d48f2493cb5 (diff)
adminer: init at 4.7.6
Diffstat (limited to 'pkgs/servers/adminer')
-rw-r--r--pkgs/servers/adminer/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/servers/adminer/default.nix b/pkgs/servers/adminer/default.nix
new file mode 100644
index 000000000000..6d7b12df56d4
--- /dev/null
+++ b/pkgs/servers/adminer/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, libbsd, fetchurl, phpPackages, php }:
+
+stdenv.mkDerivation rec {
+ version = "4.7.6";
+ 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 = "1zgvscz7jk32qga8hp2dg89h7y72v05vz4yh4lq2ahhwwkbnsxpi";
+ };
+
+ 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;
+ };
+}