yafetch/shell.nix
Ari Archer d4d1f2feba
update @ Sat 19 Mar 15:13:15 EET 2022
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-03-19 15:13:15 +02:00

13 lines
322 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
clang gnumake
lua5_4 pkg-config
];
nativeBuildInputs = [ pkgs.pkg-config ];
shellHook = ''
./configure --use-clang --use-harden --use-strip --use-lto --use-extreme-strip --use-install
make
'';
}