kodama-st/shell.nix
WanderingPenwing 5042946b62 initial commit
2024-07-29 09:22:49 +02:00

14 lines
203 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.gnumake
pkgs.gcc
pkgs.pkg-config
pkgs.xorg.libX11
pkgs.xorg.libXft
pkgs.fontconfig
pkgs.freetype
];
}