Added polr package

This commit is contained in:
Luj 2022-08-14 17:45:00 +02:00
parent f9610a0aa2
commit 5c559e2e09
9 changed files with 6994 additions and 0 deletions

14
packages/polr/compose.nix Normal file
View file

@ -0,0 +1,14 @@
{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, noDev ? false, php ? pkgs.php74, phpPackages ? pkgs.php74Packages}:
let
composerEnv = import ./composer-env.nix {
inherit (pkgs) stdenv lib writeTextFile fetchurl unzip;
inherit php phpPackages;
};
in
import ./php-packages.nix {
inherit composerEnv noDev;
inherit (pkgs) fetchurl fetchgit fetchhg fetchsvn;
}