mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 18:34:38 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
881 B
Nix
36 lines
881 B
Nix
{ lib, stdenv, fetchFromGitLab, writeText, nixosTests }:
|
|
let
|
|
localConfig = writeText "config.local.php" ''
|
|
<?php
|
|
return require(getenv('JIRAFEAU_CONFIG'));
|
|
?>
|
|
'';
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "jirafeau";
|
|
version = "4.4.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "mojo42";
|
|
repo = "Jirafeau";
|
|
rev = version;
|
|
hash = "sha256-jJ2r8XTtAzawTVo2A2pDwy7Z6KHeyBkgXXaCPY0w/rg=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -r * $out/
|
|
cp ${localConfig} $out/lib/config.local.php
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) jirafeau; };
|
|
|
|
meta = with lib; {
|
|
description = "Website permitting upload of a file in a simple way and giving a unique link to it";
|
|
license = licenses.agpl3Plus;
|
|
homepage = "https://gitlab.com/mojo42/Jirafeau";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
};
|
|
}
|