padlister: init

This commit is contained in:
Rouven Seifert 2023-08-22 14:55:56 +02:00
parent 72bac64809
commit 6887bae0a3
Signed by untrusted user: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
4 changed files with 139 additions and 0 deletions

10
pkgs/padlist/default.nix Normal file
View file

@ -0,0 +1,10 @@
{ stdenvNoCC, ... }:
stdenvNoCC.mkDerivation {
name = "padlister";
src = ./.;
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p $out
cp -r $src/index.php $out
'';
}