Skip to content

Instantly share code, notes, and snippets.

@mortymacs
Created January 19, 2024 15:09
Show Gist options
  • Save mortymacs/2a1f0ef28e3d16859550f5a2995b15ea to your computer and use it in GitHub Desktop.
Save mortymacs/2a1f0ef28e3d16859550f5a2995b15ea to your computer and use it in GitHub Desktop.
Shell nix empty structure
{ 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