Created
January 19, 2024 15:09
-
-
Save mortymacs/2a1f0ef28e3d16859550f5a2995b15ea to your computer and use it in GitHub Desktop.
Shell nix empty structure
This file contains 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 ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-23.11.tar.gz") {} }: | |
with pkgs; | |
mkShell { | |
nativeBuildInputs = [ | |
]; | |
buildInputs = [ | |
]; | |
} | |
# https://discourse.nixos.org/t/pkg-config-cant-find-gobject/38519/3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment