Created
September 18, 2025 19:29
-
-
Save traverseda/2d44328c3f1ea248e34324f080fb160b to your computer and use it in GitHub Desktop.
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
| { | |
| "nodes": { | |
| "nixpkgs": { | |
| "locked": { | |
| "lastModified": 1758070117, | |
| "narHash": "sha256-uLwwHFCZnT1c3N3biVe/0hCkag2GSrf9+M56+Okf+WY=", | |
| "owner": "nixos", | |
| "repo": "nixpkgs", | |
| "rev": "e9b7f2ff62b35f711568b1f0866243c7c302028d", | |
| "type": "github" | |
| }, | |
| "original": { | |
| "owner": "nixos", | |
| "ref": "nixos-25.05", | |
| "repo": "nixpkgs", | |
| "type": "github" | |
| } | |
| }, | |
| "root": { | |
| "inputs": { | |
| "nixpkgs": "nixpkgs" | |
| } | |
| } | |
| }, | |
| "root": "root", | |
| "version": 7 | |
| } |
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 = "Development environment with dockerfile-language-server"; | |
| inputs = { | |
| nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05"; | |
| }; | |
| outputs = { self, nixpkgs }: | |
| let | |
| system = "x86_64-linux"; | |
| pkgs = nixpkgs.legacyPackages.${system}; | |
| in | |
| { | |
| devShells.${system}.default = pkgs.mkShell { | |
| buildInputs = with pkgs; [ | |
| dockerfile-language-server | |
| ]; | |
| shellHook = '' | |
| echo "dockerfile-language-server is now available" | |
| echo "Run 'dockerfile-language-server --help' to see usage options" | |
| ''; | |
| }; | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment