mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +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.
30 lines
790 B
Diff
30 lines
790 B
Diff
From 6b9b3559d8ce59eda6c5cd6f04224cebaaa5d0ea Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=D0=94=D0=B0=D0=BC=D1=98=D0=B0=D0=BD=20=D0=93=D0=B5=D0=BE?=
|
|
=?UTF-8?q?=D1=80=D0=B3=D0=B8=D0=B5=D0=B2=D1=81=D0=BA=D0=B8?=
|
|
<gdamjan@gmail.com>
|
|
Date: Tue, 8 Sep 2020 17:11:39 +0200
|
|
Subject: [PATCH] no ext/session/php_session.h on NixOS
|
|
|
|
on NixOS php_session.h is in its own package, and is not installed in
|
|
ext/session/
|
|
---
|
|
plugins/php/common.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/plugins/php/common.h b/plugins/php/common.h
|
|
index 9bf1c069..be93f519 100644
|
|
--- a/plugins/php/common.h
|
|
+++ b/plugins/php/common.h
|
|
@@ -10,7 +10,7 @@
|
|
#endif
|
|
#include "ext/standard/info.h"
|
|
|
|
-#include "ext/session/php_session.h"
|
|
+#include "php_session.h"
|
|
|
|
#include <uwsgi.h>
|
|
|
|
--
|
|
2.28.0
|
|
|