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, | |
| fetchFromGitHub, | |
| platformio, | |
| writableTmpDirAsHomeHook, | |
| }: | |
| let | |
| platform-native = fetchFromGitHub { | |
| owner = "meshtastic"; | |
| repo = "platform-native"; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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"; | |
| flake-parts.url = "github:hercules-ci/flake-parts"; | |
| }; | |
| outputs = inputs@{ ... }: | |
| inputs.flake-parts.lib.mkFlake { inherit inputs; } { | |
| systems = [ "x86_64-linux" "aarch64-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
| { lib | |
| , dockerTools | |
| , writeText | |
| , writeShellScriptBin | |
| , postgresql | |
| , bash | |
| , coreutils | |
| , nss_wrapper | |
| }: |
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"; | |
| systems.url = "github:nix-systems/default"; | |
| }; | |
| outputs = inputs @ { self, flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } { | |
| systems = import inputs.systems; | |
| perSystem = { config, self', inputs', pkgs, system, lib, ... }: let |
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
| (use-modules (guix) | |
| (guix build-system gnu)) | |
| (define-public datetime | |
| (package | |
| (name "datetime") | |
| (version "1.0") | |
| (source (local-file "./src" #:recursive? #t)) | |
| (build-system gnu-build-system) | |
| (arguments |
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
| # This CITATION.cff file was generated with cffinit. | |
| # Visit https://bit.ly/cffinit to generate yours today! | |
| cff-version: 1.2.0 | |
| title: Reproducible Builds | |
| message: >- | |
| If you use this software, please cite it using the | |
| metadata from this file. | |
| type: software | |
| authors: |
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
| <?php | |
| declare(strict_types=1); | |
| namespace loophp\ComposerStripNondeterminism\Service; | |
| use FilesystemIterator; | |
| use loophp\ComposerStripNondeterminism\Iterator\SortedIterator; | |
| use RecursiveDirectoryIterator; | |
| use RecursiveIteratorIterator; |
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 development shell"; | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
| systems.url = "github:nix-systems/default"; | |
| nixpkgs_php7429.url = "github:NixOS/nixpkgs/1d8b8365a02efbf668311dc9db06cb98d49e7302"; | |
| }; | |
| outputs = inputs @ { self, flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } { |
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"; | |
| inputs.php7429.url = "github:NixOS/nixpkgs/1d8b8365a02efbf668311dc9db06cb98d49e7302"; | |
| outputs = { self, nixpkgs, php7429 }: | |
| let | |
| pkgs = import nixpkgs { system = "x86_64-linux"; }; | |
| nixpkgs_php7429 = import php7429 { system = "x86_64-linux"; }; | |
| in | |
| { |
NewerOlder