Added polr module

This commit is contained in:
Luj 2022-08-14 18:28:19 +02:00
parent 5c559e2e09
commit 2337084c77
4 changed files with 364 additions and 30 deletions

View file

@ -1,6 +1,4 @@
{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, noDev ? false, php ? pkgs.php74, phpPackages ? pkgs.php74Packages}:
{pkgs, system ? builtins.currentSystem, noDev ? false, php ? pkgs.php74, phpPackages ? pkgs.php74Packages}:
let
composerEnv = import ./composer-env.nix {

View file

@ -1,6 +1,6 @@
{ lib, stdenv, fetchFromGitHub }:
{pkgs, lib, stdenv, fetchFromGitHub }:
let
deps = import ./compose.nix {};
deps = import ./compose.nix { inherit pkgs; };
in
stdenv.mkDerivation rec {