4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
34 lines
809 B
Nix
34 lines
809 B
Nix
{ lib, stdenv, fetchFromGitLab, writeText }:
|
|
let
|
|
localConfig = writeText "config.local.php" ''
|
|
<?php
|
|
return require(getenv('JIRAFEAU_CONFIG'));
|
|
?>
|
|
'';
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "jirafeau";
|
|
version = "4.3.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "mojo42";
|
|
repo = "Jirafeau";
|
|
rev = version;
|
|
hash = "sha256-9v6rtxViXsolx5AKSp2HxcFyU1XJWFSiqzTBl+dQBD4=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -r * $out/
|
|
cp ${localConfig} $out/lib/config.local.php
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Website permitting upload of a file in a simple way and giving a unique link to it";
|
|
license = licenses.agpl3;
|
|
homepage = "https://gitlab.com/mojo42/Jirafeau";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
};
|
|
}
|