This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; | |
| phps.url = "github:fossar/nix-phps"; | |
| devenv.url = "github:cachix/devenv"; | |
| systems.url = "github:nix-systems/default"; | |
| }; | |
| outputs = inputs @ { self, flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } { | |
| systems = import inputs.systems; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { pkgs ? import <nixpkgs> {} }: | |
| (pkgs.buildFHSUserEnv { | |
| name = "python-3.11-pip"; | |
| targetPkgs = pkgs: (with pkgs; [ | |
| python311 | |
| python311Packages.pip | |
| python311Packages.virtualenv | |
| python311Packages.oracledb | |
| ]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
| systems.url = "github:nix-systems/default"; | |
| php-src-master = { | |
| url = "github:php/php-src/master"; | |
| flake = false; | |
| }; | |
| php-src-81 = { | |
| url = "github:php/php-src/PHP-8.1"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```nix | |
| packages = let | |
| src = ./.; | |
| php = pkgs.php81; | |
| in { | |
| app = php.buildComposerProject { | |
| inherit src; | |
| pname = "app-demo"; | |
| version = "1.0.0"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
| systems.url = "github:nix-systems/default"; | |
| flake-compat.url = "github:nix-community/flake-compat"; | |
| php-active = { | |
| url = "https://www.php.net/releases/active"; | |
| flake = false; | |
| }; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
| systems.url = "github:nix-systems/default"; | |
| pear = { | |
| url = "https://pear.php.net/install-pear-nozlib.phar"; | |
| flake = false; | |
| }; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { stdenv | |
| , lib | |
| , makeBinaryWrapper | |
| , fetchFromGitHub | |
| , fetchurl | |
| , cmake | |
| , glew | |
| , SDL2 | |
| , zlib | |
| , minizip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/nixos/nix:2.17.0 | |
| variables: | |
| COMPOSER_ALLOW_SUPERUSER: 1 | |
| default: | |
| before_script: | |
| - echo experimental-features = nix-command flakes >> /etc/nix/nix.conf | |
| - echo access-tokens = github.com=${GITHUB_TOKEN} >> /etc/nix/nix.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| description = "My custom shell env"; | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
| }; | |
| outputs = inputs@{ flake-parts, ... }: | |
| flake-parts.lib.mkFlake { inherit inputs; } { | |
| systems = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| description = "PHP App demo"; | |
| inputs.nixpkgs.url = "nixpkgs/nixpkgs-unstable"; | |
| inputs.flake-utils.url = "github:numtide/flake-utils"; | |
| inputs.phps.url = "github:loophp/nix-shell"; | |
| outputs = { self, nixpkgs, flake-utils, phps }: flake-utils.lib.eachDefaultSystem | |
| (system: | |
| let |