Added polr package

This commit is contained in:
Luj 2022-08-14 17:45:00 +02:00
parent b53e3e0e34
commit 0d0b9592d4
Signed by: luj
GPG key ID: 6FC74C847011FD83
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;
}