Skip to content

Commit

Permalink
Add a an initial shell.nix (#118)
Browse files Browse the repository at this point in the history
* add a nix shell with xst dependencies, and an envrc file

* correct .gitignore
  • Loading branch information
neeasade authored Nov 19, 2020
1 parent 16c8e21 commit 9837593
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use_nix
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.o
xst
config.h
config.h
.direnv
8 changes: 8 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
buildInputs =
(with pkgs; [
stdenv pkgconfig xorg.libX11 ncurses xorg.libXft harfbuzz
]);
}

0 comments on commit 9837593

Please sign in to comment.