2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitLab, writeText }:
|
2020-02-06 16:00:01 +00:00
|
|
|
let
|
|
|
|
localConfig = writeText "config.local.php" ''
|
|
|
|
<?php
|
|
|
|
return require(getenv('JIRAFEAU_CONFIG'));
|
|
|
|
?>
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "jirafeau";
|
2021-01-07 17:16:20 +00:00
|
|
|
version = "4.3.0";
|
2020-02-06 16:00:01 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "mojo42";
|
|
|
|
repo = "Jirafeau";
|
2020-11-01 22:39:49 +00:00
|
|
|
rev = version;
|
2021-01-07 17:16:20 +00:00
|
|
|
hash = "sha256-9v6rtxViXsolx5AKSp2HxcFyU1XJWFSiqzTBl+dQBD4=";
|
2020-02-06 16:00:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
cp -r * $out/
|
|
|
|
cp ${localConfig} $out/lib/config.local.php
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-26 04:08:40 +00:00
|
|
|
description = "Website permitting upload of a file in a simple way and giving a unique link to it";
|
2020-02-06 16:00:01 +00:00
|
|
|
license = licenses.agpl3;
|
|
|
|
homepage = "https://gitlab.com/mojo42/Jirafeau";
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
|
|
};
|
|
|
|
}
|